20181201171646_create_products.rb 258 B

123456789101112
  1. class CreateProducts < ActiveRecord::Migration[5.2]
  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