我在看这里的教程http://guides.ruby.tw/rails3/migrations.html 时看到
rails generate model Product name:string description:text
时给出的代码是
class CreateProducts < ActiveRecord::Migration
def self.up
create_table :products do |t|
t.string :name
t.text :description
t.timestamps
end
end
def self.down
drop_table :products
end
end
但是我自己运行生成的 rb 文件里只有一个 class 下面只有一个change
方法,这是 rails 版本原因造成的么?这样的差异有什么后果?求解释下