2012-10-20 99 views

回答

11

通過與控制檯創建一個新的遷移:

rails g migration add_amount_to_items 

這應該創建一個遷移是這樣的:

class AddAmountToItems < ActiveRecord::Migration 
    def change 
    # add_column table_name, :column_name, :column_type 
    add_column :items, :amount, :integer 
    end 
end 
6

偷懶的方法:

rails g migration add_amount_to_items amount:integer 
+0

你好謝謝@ WeGoingNowhere - 什麼是適當的,舒適的方式可以長期保存悲傷。如果你不想'快速和骯髒的' – BKSpurgeon

+0

並且不要忘記運行遷移:bin/rake db:migrate – Arthur