15 lines
285 B
Ruby
15 lines
285 B
Ruby
|
nigeria = Country.find_by 1
|
||
|
|
||
|
City.create!([
|
||
|
{
|
||
|
name: 'Lagos',
|
||
|
latitude: 6.5244,
|
||
|
longitude: 3.3792,
|
||
|
country: nigeria,
|
||
|
timezone: 'Africa/Lagos',
|
||
|
active: true,
|
||
|
priority: 100,
|
||
|
last_weather_fetch: 10.hours.ago,
|
||
|
last_image_generation: 10.hours.ago
|
||
|
}
|
||
|
])
|