我有一个名为"products"的表(模型为Product(,在迁移上下文中运行时无法访问:uuid属性。迁移本身不会更改结构,而是访问并创建新对象来填充DB。
这是schema.rb在迁移之前的一个片段:
create_table "products", force: :cascade do |t|
t.string "title"
t.string "description"
t.string "price"
t.uuid "uuid"
end
产品对象定义如下:
class Product < ActiveRecord::Base
end
现在,当在rails控制台/代码中运行时,这很好:
p = Product.create!(:uuid => xxx)
puts p.uuid # => xxx
puts p.inspect # => Product(title: string, description: string, price: string, uuid: uuid)
但是,在迁移上下文中运行时,相同的代码引发了一个异常:
p = Product.create!(:uuid => xxx)
puts p.uuid # => undefined method `uuid' for <Product:0x007fea6d7aa058>/opt/rubies/2.2.0/lib/ruby/gems/2.2.0/gems/activemodel-4.2.3/lib/active_model/attribute_methods.rb:433
puts p.inspect # => Product(title: string, description: string, price: string)
缺少uuid属性!怎么了
放入
Product.reset_column_information
在您的Product.create
行之前。
模型的模式通常在迁移后刷新。因此,即使创建了uuid
字段,模型也还不知道它。
您可以使用强制刷新
Product.reset_column_information
然而,代码中的问题表明,您可能正在使用迁移功能在迁移本身中创建记录。通常不建议这样做,因为迁移的目的是更改数据库的模式,而不是数据。
您应该使用创建一个特定的rake任务来修改数据,并在迁移完成后运行该任务,例如从控制台。