lockaz_app/db/migrate/20190909214236_create_market_discounts.rb
Nicolas Bally f20fe482c6 initial
2020-04-06 10:38:07 +02: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