20160803191627_add_column_percent_to_pos_configs.rb 154 B

12345
  1. class AddColumnPercentToPosConfigs < ActiveRecord::Migration
  2. def change
  3. add_column :pos_configs, :commission_percent, :integer, null: true
  4. end
  5. end