15 lines
279 B
Ruby
15 lines
279 B
Ruby
|
uk = Country.find_by 1
|
||
|
|
||
|
City.create!([
|
||
|
{
|
||
|
name: 'London',
|
||
|
latitude: 51.5074,
|
||
|
longitude: -0.1278,
|
||
|
country: uk,
|
||
|
timezone: 'Europe/London',
|
||
|
active: true,
|
||
|
priority: 100,
|
||
|
last_weather_fetch: 10.hours.ago,
|
||
|
last_image_generation: 10.hours.ago
|
||
|
}
|
||
|
])
|