sadem_app/db/migrate/20190909214236_create_market_discounts.rb
Nicolas Bally 000500e534 init
2020-02-25 02:33:11 +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