mmsc_app/db/migrate/20200624105128_create_departement_frances.rb
Nicolas Bally e7c0e126cc suite
2020-06-24 15:13:44 +02:00

13 lines
266 B
Ruby

class CreateDepartementFrances < ActiveRecord::Migration[6.0]
def change
create_table :departement_frances do |t|
t.string :num_dep
t.string :dep_name
t.string :region_name
t.string :num_dep_format
t.timestamps
end
end
end