2025-01-21 18:27:26 +08:00
|
|
|
india = Country.find_by code: 'IN'
|
|
|
|
|
|
|
|
City.create!([
|
|
|
|
{
|
|
|
|
name: 'Mumbai',
|
|
|
|
latitude: 19.0760,
|
|
|
|
longitude: 72.8777,
|
|
|
|
country: india,
|
|
|
|
timezone: 'Asia/Kolkata',
|
2025-01-22 17:00:27 +08:00
|
|
|
active: true,
|
2025-01-24 00:14:29 +08:00
|
|
|
priority: 100
|
2025-01-21 18:27:26 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Bengaluru',
|
|
|
|
latitude: 12.9716,
|
|
|
|
longitude: 77.5946,
|
|
|
|
country: india,
|
|
|
|
timezone: 'Asia/Kolkata',
|
2025-01-22 17:00:27 +08:00
|
|
|
active: true,
|
2025-01-24 00:14:29 +08:00
|
|
|
priority: 100
|
2025-01-21 18:27:26 +08:00
|
|
|
}
|
2025-01-21 21:29:26 +08:00
|
|
|
])
|