2025-01-21 18:27:26 +08:00
|
|
|
bangladesh = Country.find_by code: 'BD'
|
|
|
|
|
|
|
|
City.create!([
|
|
|
|
{
|
|
|
|
name: 'Dhaka',
|
|
|
|
latitude: 23.8103,
|
|
|
|
longitude: 90.4125,
|
|
|
|
country: bangladesh,
|
|
|
|
timezone: 'Asia/Dhaka',
|
2025-01-22 17:00:27 +08:00
|
|
|
active: true,
|
2025-01-21 18:27:26 +08:00
|
|
|
priority: 85,
|
2025-01-23 01:50:04 +08:00
|
|
|
last_weather_fetch: 10.days.ago,
|
|
|
|
last_image_generation: 10.days.ago
|
2025-01-21 18:27:26 +08:00
|
|
|
}
|
2025-01-21 21:29:26 +08:00
|
|
|
])
|