简体   繁体   中英

Using ActiveRecord::Base.transaction in a rake task?

I am writing a rake task which, at one point, uses a custom YAML file import method to seed the database.

The rake task looks like:

desc "Seed the database with production/ data."
task :production => :environment do     
  import_yaml 'seed/production'
end

At one point in the import code, I have:

ActiveRecord::Base.transaction do

Trying to run the rake task throws:

You have a nil object when you didn't expect it!
You might have expected an instance of ActiveRecord::Base.
The error occurred while evaluating nil.[]

The stack trace points to the aforementioned line in the code.

Is there a way to instantiate ActiveRecord::Base during a rake task?

Thanks!

maybe you have not included the 'environment' in the rake task?

rake task can't access rails.cache

task (:my_rake_task => :environment) do
    # ....
end

without the => :environment you will not have access to any of your rails app models

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM