20160527182640_add_columns_into_product_waste.rb 213 B

123456
  1. class AddColumnsIntoProductWaste < ActiveRecord::Migration
  2. def change
  3. add_column :product_wastes, :user_id, :integer, index: true
  4. add_column :product_wastes, :pointsale_id, :integer, index: true
  5. end
  6. end