2025-01-21 21:29:26 +08:00
|
|
|
japan = Country.find_by code: 'JP'
|
2025-01-21 18:27:26 +08:00
|
|
|
|
|
|
|
City.create!([
|
|
|
|
{
|
|
|
|
name: 'Tokyo',
|
|
|
|
latitude: 35.6762,
|
|
|
|
longitude: 139.6503,
|
|
|
|
country: japan,
|
|
|
|
timezone: 'Asia/Tokyo',
|
|
|
|
active: true,
|
|
|
|
priority: 100,
|
|
|
|
last_weather_fetch: 10.hours.ago,
|
|
|
|
last_image_generation: 10.hours.ago
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Yokohama',
|
|
|
|
latitude: 35.4437,
|
|
|
|
longitude: 139.6380,
|
|
|
|
country: japan,
|
|
|
|
timezone: 'Asia/Tokyo',
|
|
|
|
active: true,
|
|
|
|
priority: 100,
|
|
|
|
last_weather_fetch: 10.hours.ago,
|
|
|
|
last_image_generation: 10.hours.ago
|
|
|
|
}
|
2025-01-21 21:29:26 +08:00
|
|
|
])
|