我有以下型号:
class Product < ActiveRecord::Base
end
如何添加字段?
答案 0 :(得分:2)
您想要添加的字段类型是什么?如果它是一个字符串,请执行以下操作:
rails generate migration add_field_to_products field:string
其中'field'是您要添加的字段的名称,因此请重命名。
然后在命令行rake db:migrate
中执行,之后该字段应该在模型中。
此外,这个问题与Adding a column to an existing table in a Rails migration重复。如果目前还不清楚,还有更多关于此问题的讨论。