negos_app/db/migrate/20170517222240_add_qte_to_offers.rb
2017-05-18 01:21:04 +02:00

6 lines
149 B
Ruby

class AddQteToOffers < ActiveRecord::Migration
def change
add_column :offers, :qte, :decimal, precision: 10, scale: 2, :default => 1
end
end