2025-01-21 21:29:26 +08:00
|
|
|
singapore = Country.find_by code: 'SG'
|
2025-01-21 18:27:26 +08:00
|
|
|
|
|
|
|
City.create!([
|
|
|
|
{
|
|
|
|
name: 'Singapore',
|
|
|
|
latitude: 1.3521,
|
|
|
|
longitude: 103.8198,
|
|
|
|
country: singapore,
|
|
|
|
timezone: 'Asia/Singapore',
|
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
|
|
|
])
|