coton_app/db/migrate/20181111182935_create_p_qtes.rb
2018-12-15 14:06:53 +01:00

17 lines
313 B
Ruby

class CreatePQtes < ActiveRecord::Migration
def change
create_table :p_qtes do |t|
t.integer :qte
t.timestamps null: false
end
PQte.create(:qte => 25)
PQte.create(:qte => 50)
PQte.create(:qte => 100)
PQte.create(:qte => 200)
PQte.create(:qte => 300)
end
end