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

10 lines
176 B
Ruby

class CreatePFournisseurs < ActiveRecord::Migration
def change
create_table :p_fournisseurs do |t|
t.string :name
t.timestamps null: false
end
end
end