請問一下
我是ROR的超新手
我在migration的檔案中要修改資料表的內容
以下為我的程式碼
class CreateItems < ActiveRecord::Migration
def change
create_table :items do |t|
t.integer :it_seq
t.string :it_name
t.string :it_group
t.timestamp :it_create_dt
t.timestamps
end
end
end
我希望it_seq是可以自動帶入流水號的
然後it_create_dt是會自動填入當時的時間點
請問該如何修改
是否我修改完之後只要重新執行
rake db:migrate
即可
重新執行了之後影響的範圍有?
我的MVC程式碼也會受到影響嗎
另外請問一下大家
開發的時候如何去管理你的sqlite或是需select一些資料的時候
是否有使用其他工具