Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个非 Rails 应用程序,我在其中使用 rake 和 activerecord 进行数据库迁移等。
我怎么能用种子?
我创建了一个 seed.rb 文件,但是如何将它包装在 rake 方法调用中?
只需require_relative 'db/seeds'在使用 Ruby 1.9 或require 'db/seeds'在 rake 任务中使用 Ruby 1.8 时使用。当你调用它时,它们将被评估。
require_relative 'db/seeds'
require 'db/seeds'