pollen_app/db/migrate/20190909214236_create_market_discounts.rb
Nicolas Bally 120e9803eb initial
2020-04-28 14:51:42 +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