我使用 ruby​​ 1.9.2 和 rails 3.0.9。

每当我尝试执行 rake db:seed 时,它都会抛出以下错误:

rake aborted!
uninitialized constant EmployeeCategory

我在 config/application.rb 文件中禁用了线程安全并启用了“dependency_loading”。
config.threadsafe! unless $rails_rake_task
config.dependency_loading = true

但它仍然无法正常工作。

这是seed.rb文件的内容
StudentCategory.destroy_all
StudentCategory.create([
 {:name=>"OBC",:is_deleted=>false},
 {:name=>"General",:is_deleted=>false}
])

EmployeeCategory.create([
{:name => 'Management',:prefix => 'MGMT',:status => true},
{:name => 'Teaching',:prefix => 'TCR',:status => true},
{:name => 'Fedena Admin',:prefix => 'Admin',:status => true},
{:name => 'Non-Teaching',:prefix => 'NTCR',:status => true}
])
EmployeePosition.create([
{:name => 'Principal',:employee_category_id => 2,:status => true},
{:name => 'Jr.Teacher',:employee_category_id => 3,:status => true},
{:name => 'Clerk',:employee_category_id => 4,:status => true}
])

最佳答案

这可能很明显,但是您是否在/models 中创建了您的 employee_category.rb 模型?发现每次出现这个错误时我都会创建 View 、 Controller 和路由,但是忘记了一些简单的事情,比如添加模型文件。

关于ruby-on-rails - db :seed is throwing an error,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6563499/

10-16 00:24