Skip to content

Commit 551b388

Browse files
committed
Fix #385 Add Huntingwood and Eagle Farm cities to Australia
1 parent b1e892c commit 551b388

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

sql/world.sql

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-- https://tableplus.com/
55
--
66
-- Database: world
7-
-- Generation Time: 2022-03-13 13:42:32.2270
7+
-- Generation Time: 2022-03-13 13:49:07.0590
88
-- -------------------------------------------------------------
99

1010

@@ -37,7 +37,7 @@ CREATE TABLE `cities` (
3737
KEY `cities_test_ibfk_2` (`country_id`),
3838
CONSTRAINT `cities_ibfk_1` FOREIGN KEY (`state_id`) REFERENCES `states` (`id`),
3939
CONSTRAINT `cities_ibfk_2` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`)
40-
) ENGINE=InnoDB AUTO_INCREMENT=149308 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
40+
) ENGINE=InnoDB AUTO_INCREMENT=149310 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
4141

4242
DROP TABLE IF EXISTS `countries`;
4343
CREATE TABLE `countries` (
@@ -148740,7 +148740,9 @@ INSERT INTO `cities` (`id`, `name`, `state_id`, `state_code`, `country_id`, `cou
148740148740
(149304, 'Villa Española', 3218, 'MO', 235, 'UY', -34.86388889, -56.14472222, '2022-01-29 18:39:37', '2022-01-29 18:39:37', 1, 'Q984929'),
148741148741
(149305, 'Villa García', 3218, 'MO', 235, 'UY', -34.78111000, -56.05333000, '2022-01-29 18:39:37', '2022-01-29 18:39:37', 1, 'Q7930332'),
148742148742
(149306, 'Villa Muñoz', 3218, 'MO', 235, 'UY', -34.88781389, -56.17701389, '2022-01-29 18:39:37', '2022-01-29 18:39:37', 1, 'Q984422'),
148743-
(149307, 'Villa del Cerro', 3218, 'MO', 235, 'UY', -34.88444444, -56.25138889, '2022-01-29 18:39:37', '2022-01-29 18:39:37', 1, 'Q1010338');
148743+
(149307, 'Villa del Cerro', 3218, 'MO', 235, 'UY', -34.88444444, -56.25138889, '2022-01-29 18:39:37', '2022-01-29 18:39:37', 1, 'Q1010338'),
148744+
(149308, 'Huntingwood', 3909, 'NSW', 14, 'AU', -33.79759320, 150.87480900, '2022-03-13 13:47:32', '2022-03-13 13:47:32', 1, 'Q5945586'),
148745+
(149309, 'Eagle Farm', 3905, 'QLD', 14, 'AU', -27.43151850, 153.07229130, '2022-03-13 13:48:52', '2022-03-13 13:48:52', 1, 'Q1090857');
148744148746

148745148747
INSERT INTO `countries` (`id`, `name`, `iso3`, `numeric_code`, `iso2`, `phonecode`, `capital`, `currency`, `currency_name`, `currency_symbol`, `tld`, `native`, `region`, `subregion`, `timezones`, `translations`, `latitude`, `longitude`, `emoji`, `emojiU`, `created_at`, `updated_at`, `flag`, `wikiDataId`) VALUES
148746148748
(1, 'Afghanistan', 'AFG', '004', 'AF', '93', 'Kabul', 'AFN', 'Afghan afghani', '؋', '.af', 'افغانستان', 'Asia', 'Southern Asia', '[{\"zoneName\":\"Asia/Kabul\",\"gmtOffset\":16200,\"gmtOffsetName\":\"UTC+04:30\",\"abbreviation\":\"AFT\",\"tzName\":\"Afghanistan Time\"}]', '{\"kr\":\"아프가니스탄\",\"br\":\"Afeganistão\",\"pt\":\"Afeganistão\",\"nl\":\"Afghanistan\",\"hr\":\"Afganistan\",\"fa\":\"افغانستان\",\"de\":\"Afghanistan\",\"es\":\"Afganistán\",\"fr\":\"Afghanistan\",\"ja\":\"アフガニスタン\",\"it\":\"Afghanistan\",\"cn\":\"阿富汗\"}', 33.00000000, 65.00000000, '🇦🇫', 'U+1F1E6 U+1F1EB', '2018-07-21 01:41:03', '2021-12-11 18:19:42', 1, 'Q889'),

0 commit comments

Comments
 (0)