secondbase icon indicating copy to clipboard operation
secondbase copied to clipboard

rake tasks for second_base does not load environment

Open senid231 opened this issue 7 years ago • 3 comments

ActiveRecord task db:migrate loads environment and config activerecord-5.1.4/lib/active_record/railties/databases.rake:56

desc "Migrate the database (options: VERSION=x, VERBOSE=false, SCOPE=blog)."
task migrate: [:environment, :load_config] do
  ActiveRecord::Tasks::DatabaseTasks.migrate
  db_namespace["_dump"].invoke
end

And SecondBase task db:second_base:migrate loads only config secondbase-2.1.4/lib/second_base/databases.rake:30

task :migrate => ['db:load_config'] do
  SecondBase.on_base { Rake::Task['db:migrate'].execute }
end

as result I can't you classes/modules from app folder in migrations for second database

senid231 avatar Jul 12 '18 14:07 senid231

it should be

task :migrate => ['db:load_config', :environment] do
  SecondBase.on_base { Rake::Task['db:migrate'].execute }
end

I tested this fix and it works fine

also I had another bug - after applying second_base:migrate I saw invalid inserts into schema_migrations in db/second_base/migrate/structure.sql (but second_base database schema_migrations had only correct data).

seems like this procees was broken after upgrading rake to 12.3.1

senid231 avatar Jul 12 '18 14:07 senid231

Similar situation here #50 and some other commadns

workgena avatar Jul 12 '18 14:07 workgena

Can someone open a PR to make that change? Would love to fix this and release a new version.

metaskills avatar Jul 30 '18 13:07 metaskills