11 lines
190 B
Ruby
11 lines
190 B
Ruby
class CreateRegions < ActiveRecord::Migration
|
|
def change
|
|
create_table :regions do |t|
|
|
t.string :nom_region
|
|
t.string :slug
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|