13 lines
201 B
Ruby
13 lines
201 B
Ruby
class CreateProvinces < ActiveRecord::Migration[5.2]
|
|
def down
|
|
drop_table :provinces
|
|
end
|
|
|
|
def up
|
|
create_table :provinces do |t|
|
|
t.string :name
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|