class CreateProducts < ActiveRecord::Migration
  def change
    create_table :products do |t|
      t.string :name
      t.text :desc
      t.decimal :price, precision: 10, scale: 2

      t.timestamps null: false
    end
  end
end
