15 lines
235 B
Ruby
15 lines
235 B
Ruby
class CreateCities < ActiveRecord::Migration[5.2]
|
|
def down
|
|
drop_table :cities
|
|
end
|
|
def up
|
|
create_table :cities do |t|
|
|
t.string :name
|
|
t.references :province, foreign_key: true
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|
|
|
|
|