today_ai_weather/db/seeds/cities/bangladesh.rb

14 lines
221 B
Ruby
Raw Normal View History

bangladesh = Country.find_by code: 'BD'
City.create!([
{
name: 'Dhaka',
latitude: 23.8103,
longitude: 90.4125,
country: bangladesh,
timezone: 'Asia/Dhaka',
active: true,
priority: 85
}
])