Skip to content

Commit

Permalink
fix: #631 add ceuta and melillia in spain
Browse files Browse the repository at this point in the history
  • Loading branch information
dr5hn committed Aug 6, 2023
1 parent c28c8a5 commit 4f03c3b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sql/world.sql
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ CREATE TABLE `states` (
PRIMARY KEY (`id`),
KEY `country_region` (`country_id`),
CONSTRAINT `country_region_final` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5223 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;
) ENGINE=InnoDB AUTO_INCREMENT=5225 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;

INSERT INTO `cities` (`id`, `name`, `state_id`, `state_code`, `country_id`, `country_code`, `latitude`, `longitude`, `created_at`, `updated_at`, `flag`, `wikiDataId`) VALUES
(1, 'Andorra la Vella', 488, '07', 6, 'AD', 42.50779000, 1.52109000, '2019-10-05 23:58:06', '2019-10-05 23:58:06', 1, 'Q1863'),
Expand Down Expand Up @@ -156517,7 +156517,9 @@ INSERT INTO `states` (`id`, `name`, `country_id`, `country_code`, `fips_code`, `
(5219, 'Palmyra Atoll', 234, 'UM', NULL, '95', 'island', 5.88850260, -162.07866560, '2023-03-25 20:08:55', '2023-03-25 20:08:55', 1, 'Q123076'),
(5220, 'Wake Island', 234, 'UM', NULL, '79', 'island', 19.27961900, 166.64993480, '2023-03-25 20:08:55', '2023-03-25 20:08:55', 1, 'Q43296'),
(5221, 'Asuncion', 172, 'PY', NULL, 'ASU', 'capital', -25.29682970, -57.68066230, '2023-06-28 20:08:55', '2023-06-28 20:08:55', 1, 'Q2933'),
(5222, 'Canarias', 207, 'ES', 'IC', 'CN', 'autonomous community', 28.29160000, 16.62910000, '2019-10-05 23:19:00', '2023-07-28 17:08:53', 1, 'Q5813');
(5222, 'Canarias', 207, 'ES', 'IC', 'CN', 'autonomous community', 28.29160000, 16.62910000, '2019-10-05 23:19:00', '2023-07-28 17:08:53', 1, 'Q5813'),
(5223, 'Ceuta', 207, 'ES', '', 'CE', 'autonomous city in North Africa', 35.88900000, -5.31870000, '2023-07-28 17:49:31', '2023-07-28 17:49:31', 1, 'Q25212'),
(5224, 'Melilla', 207, 'ES', '', 'ML', 'autonomous city in North Africa', 35.29370000, -2.93830000, '2023-07-28 17:49:31', '2023-07-28 17:49:56', 1, 'Q131981');


/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
Expand Down

0 comments on commit 4f03c3b

Please sign in to comment.