Skip to content

Commit 5281910

Browse files
authored
Update geo_countries.sql
fixed bug
1 parent f09768b commit 5281910

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

geo_countries.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ DROP TABLE IF EXISTS `geo_countries`;
77
CREATE TABLE `geo_countries` (
88
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
99
`name` varchar(255) NOT NULL,
10-
`cca2` varchar(2) NOT NULL,
10+
`cca2` varchar(3) NOT NULL,
1111
`cca3` varchar(3) NOT NULL,
1212
`ccn3` int(11) NOT NULL,
1313
`continent_id` int(10) UNSIGNED NOT NULL DEFAULT 0,
@@ -275,4 +275,4 @@ INSERT INTO `geo_countries` (`id`, `name`, `cca2`, `cca3`, `ccn3`, `continent_id
275275
(252, "Serranilla Bank", "SER", "SER", 0, 3, 0),
276276
(253, "Somaliland", "SOL", "SOL", 0, 3, 9),
277277
(254, "US Naval Base Guantanamo Bay", "USG", "USG", 0, 3, 0),
278-
(255, "Akrotiri Sovereign Base Area", "WSB", "WSB", 0, 3, 5);
278+
(255, "Akrotiri Sovereign Base Area", "WSB", "WSB", 0, 3, 5);

0 commit comments

Comments
 (0)