negos_app/db/migrate/20180301174759_create_fournisseurs.rb
Nicolas Bally 0b91dcd816 migration
2018-03-02 00:50:30 +01:00

13 lines
240 B
Ruby

class CreateFournisseurs < ActiveRecord::Migration
def change
create_table :fournisseurs do |t|
t.string :name
t.text :description
t.string :iban
t.string :bic
t.timestamps null: false
end
end
end