我不能装载使用STI的表的夹具。
当我调用FIXTURES=schools rake db:fixtures:load时,会得到以下错误:
undefined method `reflect_on_all_associations' for Object:Class其他夹具负载良好,即通过调用FIXTURES=committes rake db:fixtures:load
这里是我的学校迁移:
class CreateSchools < ActiveRecord::Migration
def self.up
create_table :schools do |t|
t.string :name
t.string :type
t.string :street
t.string :city
t.string :province
t.timestamps
end
end
...
end我有几个模型文件,即school.rb
class School < ActiveRecord::Base
end和secondary_school.rb
class SecondarySchool < School
end下面是堆栈跟踪:
undefined method `reflect_on_all_associations' for Object:Class
/home/loranaw/ruby/gems/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:597:in `insert_fixtures'
/home/loranaw/ruby/gems/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:568:in `each'
/home/loranaw/ruby/gems/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:568:in `insert_fixtures'
/home/loranaw/ruby/gems/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:512:in `create_fixtures'
/home/loranaw/ruby/gems/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:512:in `each'
/home/loranaw/ruby/gems/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:512:in `create_fixtures'
/home/loranaw/ruby/gems/gems/activerecord-2.3.10/lib/active_record/connection_adapters/abstract/database_statements.rb:136:in `transaction'
/home/loranaw/ruby/gems/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:510:in `create_fixtures'
/home/loranaw/ruby/gems/gems/activerecord-2.3.10/lib/active_record/connection_adapters/mysql_adapter.rb:267:in `disable_referential_integrity'
/home/loranaw/ruby/gems/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:501:in `create_fixtures'
/home/loranaw/ruby/gems/gems/activerecord-2.3.10/lib/active_record/base.rb:1482:in `silence'
/home/loranaw/ruby/gems/gems/activerecord-2.3.10/lib/active_record/fixtures.rb:500:in `create_fixtures'
/home/loranaw/ruby/gems/gems/rails-2.3.10/lib/tasks/databases.rake:223
/home/loranaw/ruby/gems/gems/rails-2.3.10/lib/tasks/databases.rake:222:in `each'
/home/loranaw/ruby/gems/gems/rails-2.3.10/lib/tasks/databases.rake:222一些样本YML:
---
schools_7133:
city: Nahanni Butte
name: Charles Yohin School
created_at: 2010-11-26 02:36:39
grade_range: K-10
latitude: "61.03349"
country: CA
updated_at: 0000-00-00 00:00:00
postal_code: "X0E 0N0"
url:
street: ""
id: "9682"
type: SecondarySchool
fax: (867) 602-2202
phone: (867) 602-2200
funding:
longitude: "-123.38642"
school_type:
province: NT
email: 发布于 2010-12-10 16:20:01
问题的结果是其中一个记录的类型为空白/空值。确保STI表中的每一行都有一个类型。
发布于 2010-12-10 04:08:14
School对象有一个名为type的字段,用于单表继承。重新命名该字段可以解决这个问题。
https://stackoverflow.com/questions/4405481
复制相似问题