我的用户模型看起来像:
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
如果我想再添加一个:attribute,最好创建另一个迁移文件来添加新列(请参阅另一个 Stackoverflow 线程)或者我可以手动添加 t.string :name_of_new_attribute 然后 rake db:migrate?
谢谢!