20160726211815_add_columns_into_pos_config.rb 223 B

123456
  1. class AddColumnsIntoPosConfig < ActiveRecord::Migration
  2. def change
  3. add_column :pos_configs, :reserve_sale_percent, :integer, null: true
  4. add_column :pos_configs, :days_cancel_reserved, :integer, null: true
  5. end
  6. end