20180816020521_create_promotions.rb 428 B

1234567891011121314
  1. class CreatePromotions < ActiveRecord::Migration
  2. def change
  3. create_table :promotions do |t|
  4. t.date :start_date, null: false
  5. t.date :end_date, null: false
  6. t.decimal :percent, default: 0
  7. t.belongs_to :product, index: true
  8. t.belongs_to :category, index: true
  9. t.belongs_to :user, index: true
  10. t.integer :status, null: false, default: 1
  11. t.timestamps null: false
  12. end
  13. end
  14. end