選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

13 行
258 B

  1. class CreateProducts < ActiveRecord::Migration[5.0]
  2. def change
  3. create_table :products do |t|
  4. t.string :title
  5. t.text :description
  6. t.string :image_url
  7. t.decimal :price, precision: 8, scale: 2
  8. t.timestamps
  9. end
  10. end
  11. end