耙子流产了!未初始化的常量Object :: Country,为什么看不到模型?

时间:2011-12-25 08:24:26

标签: ruby-on-rails-3.1 rake-task

我有rails 3.1,我试图用seeds.rb填充数据 我有一个模型Country,它被迁移到国家/地区表

但似乎rails无法从seeds.rb看到Country模型 我收到这个错误:

rake aborted!
uninitialized constant Object::Country

Tasks: TOP => db:seed

my seeds.rb文件如下所示:

# encoding: UTF-8

Country.delete_all

我的国家模特:

class Country < ActiveRecord::Base
  has_many :students
  has_many :instructors

end

有什么想法吗?

修改

我在开发环境中,config.threadsafe!

0 个答案:

没有答案