today_ai_weather/db/seeds/cities/nigeria.rb

14 lines
216 B
Ruby
Raw Normal View History

nigeria = Country.find_by code: 'NG'
City.create!([
{
name: 'Lagos',
latitude: 6.5244,
longitude: 3.3792,
country: nigeria,
timezone: 'Africa/Lagos',
active: true,
priority: 100
}
])