我的《使用者模式》认为:
class CreateUsers < ActiveRecord::Migration
def self.up
create_table :users do |t|
t.string :name
t.string :email
t.timestamps
end
end
def self.down
drop_table :users
end
end
如果我想增加一个新栏(,见另一个Stackoverflow thread),还是我能够人工添加标记:姓名_of_new_attribute,然后是:migrate?
感谢!