2025-01-21 21:29:26 +08:00
|
|
|
brazil = Country.find_by code: 'BR'
|
2025-01-21 18:27:26 +08:00
|
|
|
|
|
|
|
City.create!([
|
|
|
|
{
|
|
|
|
name: 'Rio de Janeiro',
|
|
|
|
latitude: -22.9068,
|
|
|
|
longitude: -43.1729,
|
|
|
|
country: brazil,
|
|
|
|
timezone: 'America/Sao_Paulo',
|
2025-01-22 16:50:00 +08:00
|
|
|
active: false,
|
2025-01-21 18:27:26 +08:00
|
|
|
priority: 80,
|
|
|
|
last_weather_fetch: 10.hours.ago,
|
|
|
|
last_image_generation: 10.hours.ago
|
|
|
|
}
|
2025-01-21 21:29:26 +08:00
|
|
|
])
|