📅  最后修改于: 2022-03-11 14:55:11.155000             🧑  作者: Mango
class CreateProducts < ActiveRecord::Migration[5.0]
def change
create_table :products do |t|
t.string :name
t.text :description
t.timestamps
end
end
end