20251017205753_create_products.rb 232 B

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