20160527153244_create_product_wastes.rb 370 B

1234567891011
  1. class CreateProductWastes < ActiveRecord::Migration
  2. def change
  3. create_table :product_wastes do |t|
  4. t.belongs_to :product, index: true
  5. t.decimal :quantity, precision: 10, scale:2, default: 0.00, null: false
  6. t.string :reason, null: false, default: ""
  7. t.integer :status, null: false, default: 0
  8. t.timestamps null: false
  9. end
  10. end
  11. end