我想在我的模型 Treatment 中添加一个列,以便它属于一个类别:
class CreateTreatments < ActiveRecord::Migration
def change
create_table :treatments do |t|
t.string :typ
t.string :content
t.date :day
t.references :patient
t.timestamps
end
add_index :treatments, :patient_id
add_index :treatments, :category_id
end
end
我想补充:
t.references :category
和
add_index :treatments, :category_id
我试过它只是简单地复制它并运行迁移,但它没有用!我知道通常我会简单地做一个
rails g model Treatment category:references
之后我怎么能做到这一点?