15 lines
292 B
Ruby
15 lines
292 B
Ruby
|
thailand = Country.find_by 1
|
||
|
|
||
|
City.create!([
|
||
|
{
|
||
|
name: 'Bangkok',
|
||
|
latitude: 13.7563,
|
||
|
longitude: 100.5018,
|
||
|
country: thailand,
|
||
|
timezone: 'Asia/Bangkok',
|
||
|
active: true,
|
||
|
priority: 100,
|
||
|
last_weather_fetch: 10.hours.ago,
|
||
|
last_image_generation: 10.hours.ago
|
||
|
}
|
||
|
])
|