2025-01-21 21:29:26 +08:00
|
|
|
mexico = Country.find_by code: 'MX'
|
2025-01-21 18:27:26 +08:00
|
|
|
|
|
|
|
City.create!([
|
|
|
|
{
|
|
|
|
name: 'Mexico City',
|
|
|
|
latitude: 19.4326,
|
|
|
|
longitude: -99.1332,
|
|
|
|
country: mexico,
|
|
|
|
timezone: 'America/Mexico_City',
|
2025-01-22 16:50:00 +08:00
|
|
|
active: false,
|
2025-01-21 18:27:26 +08:00
|
|
|
priority: 100,
|
|
|
|
last_weather_fetch: 10.hours.ago,
|
|
|
|
last_image_generation: 10.hours.ago
|
|
|
|
}
|
2025-01-21 21:29:26 +08:00
|
|
|
])
|