- Implement Country and Region models - Establish relationships between City, Country, and Region - Update ActiveAdmin setup for managing countries and regions - Add localization support for cities and countries in multiple languages - Create necessary migrations to support the new schema This update allows for better categorization of cities under their respective countries and regions, enhancing geographical structure and support for multilingual features.
14 lines
286 B
Ruby
14 lines
286 B
Ruby
class CreateRegions < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :regions do |t|
|
|
t.string :name
|
|
t.string :code
|
|
t.string :slug
|
|
|
|
t.timestamps
|
|
end
|
|
add_index :regions, :code, unique: true
|
|
add_index :regions, :slug, unique: true
|
|
end
|
|
end
|