15 lines
297 B
Ruby
15 lines
297 B
Ruby
|
singapore = Country.find_by 1
|
||
|
|
||
|
City.create!([
|
||
|
{
|
||
|
name: 'Singapore',
|
||
|
latitude: 1.3521,
|
||
|
longitude: 103.8198,
|
||
|
country: singapore,
|
||
|
timezone: 'Asia/Singapore',
|
||
|
active: true,
|
||
|
priority: 100,
|
||
|
last_weather_fetch: 10.hours.ago,
|
||
|
last_image_generation: 10.hours.ago
|
||
|
}
|
||
|
])
|