thatcher_app/db/migrate/20190909214236_create_market_discounts.rb
2019-11-11 16:11:03 +01:00

12 lines
219 B
Ruby

class CreateMarketDiscounts < ActiveRecord::Migration[6.0]
def change
create_table :market_discounts do |t|
t.decimal :min
t.decimal :max
t.decimal :percent
t.timestamps
end
end
end