在之前的应用中,当我们使用seed_dumper
&的所有人都需要相同的数据库数据时rake db:seed:dump
填充种子文件,然后填充rake db:seed
。
对于这个应用程序,使用舒适的墨西哥沙发CMS宝石和堡垒插件,这将是很好的做同样的。只有seed_dumper才会转储用户 - 没有别的。
seed_dump
('父级' gem)出现以下错误:
rake aborted!
NameError: undefined local variable or method `cms_manageable' for Comfy::Cms::Page(Table doesn't exist):Class
/usr/local/rvm/gems/ruby-2.0.0-p247@global/gems/activerecord-4.0.0/lib/active_record/dynamic_matchers.rb:22:in `method_missing'
/path to my app/app/models/comfy/cms/page.rb:9:in `<class:Page>'
任何想法或替代方法将不胜感激。欢呼声。
答案 0 :(得分:0)
现在只使用gem 'seed_dump'
(不是seed_dumper
),运行命令bundle exec rake db:seed:dump
可用于导出种子数据。