15 lines
294 B
Ruby
15 lines
294 B
Ruby
|
south_korea = Country.find_by 1
|
||
|
|
||
|
City.create!([
|
||
|
{
|
||
|
name: 'Seoul',
|
||
|
latitude: 37.5665,
|
||
|
longitude: 126.9780,
|
||
|
country: south_korea,
|
||
|
timezone: 'Asia/Seoul',
|
||
|
active: true,
|
||
|
priority: 100,
|
||
|
last_weather_fetch: 10.hours.ago,
|
||
|
last_image_generation: 10.hours.ago
|
||
|
}
|
||
|
])
|