turkey = Country.find_by code: 'TR'

City.create!([
  {
    name: 'İstanbul',
    latitude: 41.0082,
    longitude: 28.9784,
    country: turkey,
    timezone: 'Europe/Istanbul',
    active: true,
    priority: 100
  },
  {
    name: 'Ankara',
    latitude: 39.9334,
    longitude: 32.8597,
    country: turkey,
    timezone: 'Europe/Istanbul',
    active: true,
    priority: 100
  }
])