📜  数据库迁移如何工作 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:11.155000             🧑  作者: Mango

代码示例2
class CreateProducts < ActiveRecord::Migration[5.0]
  def change
    create_table :products do |t|
      t.string :name
      t.text :description
 
      t.timestamps
    end
  end
end