たとえば、私はこのモデルを持っています:
class Product < ActiveRecord::Base
attr_accessible :name, :order
end
それから私がrake db:migrate
それをしたときそれはこのdb/migrate / 20120825132038_create_products.rbを作成しました:
class CreateProducts < ActiveRecord::Migration
def change
create_table :products do |t|
t.integer :order
t.string :name
t.timestamps
end
end
end
しかし、それはすべて私が使用したので起こりましたrails generate Product order:integer name:string
製品モデルに移動し、手動で次のように変更した後、次のようになります。
class Product < ActiveRecord::Base
attr_accessible :name, :order, :category_id
validates :name, uniqueness: true
belongs_to :category
end
db / migrate / 20120825132038_create_products.rbを更新で自動更新するにはどうすればよいですか?