15 lines
290 B
Ruby
15 lines
290 B
Ruby
|
pakistan = Country.find_by 1
|
||
|
|
||
|
City.create!([
|
||
|
{
|
||
|
name: 'Lahore',
|
||
|
latitude: 31.5204,
|
||
|
longitude: 74.3587,
|
||
|
country: pakistan,
|
||
|
timezone: 'Asia/Karachi',
|
||
|
active: true,
|
||
|
priority: 100,
|
||
|
last_weather_fetch: 10.hours.ago,
|
||
|
last_image_generation: 10.hours.ago
|
||
|
}
|
||
|
])
|