def up; end
和有什么区别def change; end
?我有代码
class CreateTweets < ActiveRecord::Migration
def change
create_table :tweets do |t|
t.string :status
t.integer :zombie_id
t.timestamps
end
end
end
如果我定义def up
而不是它会改变什么def change
?