Skip to content

Commit

Permalink
Currencies SQL fix; v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dmythro committed Jul 7, 2014
1 parent d13ce1a commit 08d70c0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Countries",
"version": "1.0.2",
"version": "1.0.3",
"homepage": "https://github.com/annexare/Countries",
"authors": [
"Dmitry <[email protected]>"
Expand Down
28 changes: 14 additions & 14 deletions countries.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `countries` (
`phone` VARCHAR(15) NOT NULL DEFAULT '',
`continent` VARCHAR(2) NOT NULL DEFAULT '',
`capital` VARCHAR(50) NOT NULL DEFAULT '',
`currency` VARCHAR(3) NOT NULL DEFAULT '',
`currency` VARCHAR(30) NOT NULL DEFAULT '',
`languages` VARCHAR(30) NOT NULL DEFAULT ''
)
ENGINE =MyISAM
Expand Down Expand Up @@ -57,11 +57,11 @@ VALUES
('BL', 'Saint Barthélemy', 'Saint-Barthélemy', '590', 'NA', 'Gustavia', 'EUR', 'fr'),
('BM', 'Bermuda', 'Bermuda', '1441', 'NA', 'Hamilton', 'BMD', 'en'),
('BN', 'Brunei', 'Negara Brunei Darussalam', '673', 'AS', 'Bandar Seri Begawan', 'BND', 'ms'),
('BO', 'Bolivia', 'Bolivia', '591', 'SA', 'Sucre', 'BOB', 'es,ay,qu'),
('BO', 'Bolivia', 'Bolivia', '591', 'SA', 'Sucre', 'BOB,BOV', 'es,ay,qu'),
('BQ', 'Bonaire', 'Bonaire', '5997', 'NA', 'Kralendijk', 'USD', 'nl'),
('BR', 'Brazil', 'Brasil', '55', 'SA', 'Brasília', 'BRL', 'pt'),
('BS', 'Bahamas', 'Bahamas', '1242', 'NA', 'Nassau', 'BSD', 'en'),
('BT', 'Bhutan', 'ʼbrug-yul', '975', 'AS', 'Thimphu', 'BTN', 'dz'),
('BT', 'Bhutan', 'ʼbrug-yul', '975', 'AS', 'Thimphu', 'BTN,INR', 'dz'),
('BV', 'Bouvet Island', 'Bouvetøya', '', 'AN', '', 'NOK', ''),
('BW', 'Botswana', 'Botswana', '267', 'AF', 'Gaborone', 'BWP', 'en,tn'),
('BY', 'Belarus', 'Белару́сь', '375', 'EU', 'Minsk', 'BYR', 'be,ru'),
Expand All @@ -71,15 +71,15 @@ VALUES
('CD', 'Democratic Republic of the Congo', 'République démocratique du Congo', '243', 'AF', 'Kinshasa', 'CDF', 'fr,ln,kg,sw,lu'),
('CF', 'Central African Republic', 'Ködörösêse tî Bêafrîka', '236', 'AF', 'Bangui', 'XAF', 'fr,sg'),
('CG', 'Republic of the Congo', 'République du Congo', '242', 'AF', 'Brazzaville', 'XAF', 'fr,ln'),
('CH', 'Switzerland', 'Schweiz', '41', 'EU', 'Bern', 'CHE', 'de,fr,it'),
('CH', 'Switzerland', 'Schweiz', '41', 'EU', 'Bern', 'CHE,CHF,CHW', 'de,fr,it'),
('CI', 'Ivory Coast', 'Côte d''Ivoire', '225', 'AF', 'Yamoussoukro', 'XOF', 'fr'),
('CK', 'Cook Islands', 'Cook Islands', '682', 'OC', 'Avarua', 'NZD', 'en'),
('CL', 'Chile', 'Chile', '56', 'SA', 'Santiago', 'CLF', 'es'),
('CL', 'Chile', 'Chile', '56', 'SA', 'Santiago', 'CLF,CLP', 'es'),
('CM', 'Cameroon', 'Cameroon', '237', 'AF', 'Yaoundé', 'XAF', 'en,fr'),
('CN', 'China', '中国', '86', 'AS', 'Beijing', 'CNY', 'zh'),
('CO', 'Colombia', 'Colombia', '57', 'SA', 'Bogotá', 'COP', 'es'),
('CR', 'Costa Rica', 'Costa Rica', '506', 'NA', 'San José', 'CRC', 'es'),
('CU', 'Cuba', 'Cuba', '53', 'NA', 'Havana', 'CUC', 'es'),
('CU', 'Cuba', 'Cuba', '53', 'NA', 'Havana', 'CUC,CUP', 'es'),
('CV', 'Cape Verde', 'Cabo Verde', '238', 'AF', 'Praia', 'CVE', 'pt'),
('CW', 'Curacao', 'Curaçao', '5999', 'NA', 'Willemstad', 'ANG', 'nl,pa,en'),
('CX', 'Christmas Island', 'Christmas Island', '61', 'AS', 'Flying Fish Cove', 'AUD', 'en'),
Expand All @@ -94,7 +94,7 @@ VALUES
('EC', 'Ecuador', 'Ecuador', '593', 'SA', 'Quito', 'USD', 'es'),
('EE', 'Estonia', 'Eesti', '372', 'EU', 'Tallinn', 'EUR', 'et'),
('EG', 'Egypt', 'مصر‎', '20', 'AF', 'Cairo', 'EGP', 'ar'),
('EH', 'Western Sahara', 'الصحراء الغربية', '212', 'AF', 'El Aaiún', 'MAD', 'es'),
('EH', 'Western Sahara', 'الصحراء الغربية', '212', 'AF', 'El Aaiún', 'MAD,DZD,MRO', 'es'),
('ER', 'Eritrea', 'ኤርትራ', '291', 'AF', 'Asmara', 'ERN', 'ti,ar,en'),
('ES', 'Spain', 'España', '34', 'EU', 'Madrid', 'EUR', 'es,eu,ca,gl,oc'),
('ET', 'Ethiopia', 'ኢትዮጵያ', '251', 'AF', 'Addis Ababa', 'ETB', 'am'),
Expand Down Expand Up @@ -127,7 +127,7 @@ VALUES
('HM', 'Heard Island and McDonald Islands', 'Heard Island and McDonald Islands', '', 'AN', '', 'AUD', 'en'),
('HN', 'Honduras', 'Honduras', '504', 'NA', 'Tegucigalpa', 'HNL', 'es'),
('HR', 'Croatia', 'Hrvatska', '385', 'EU', 'Zagreb', 'HRK', 'hr'),
('HT', 'Haiti', 'Haïti', '509', 'NA', 'Port-au-Prince', 'HTG', 'fr,ht'),
('HT', 'Haiti', 'Haïti', '509', 'NA', 'Port-au-Prince', 'HTG,USD', 'fr,ht'),
('HU', 'Hungary', 'Magyarország', '36', 'EU', 'Budapest', 'HUF', 'hu'),
('ID', 'Indonesia', 'Indonesia', '62', 'AS', 'Jakarta', 'IDR', 'id'),
('IE', 'Ireland', 'Éire', '353', 'EU', 'Dublin', 'EUR', 'ga,en'),
Expand Down Expand Up @@ -160,7 +160,7 @@ VALUES
('LI', 'Liechtenstein', 'Liechtenstein', '423', 'EU', 'Vaduz', 'CHF', 'de'),
('LK', 'Sri Lanka', 'śrī laṃkāva', '94', 'AS', 'Colombo', 'LKR', 'si,ta'),
('LR', 'Liberia', 'Liberia', '231', 'AF', 'Monrovia', 'LRD', 'en'),
('LS', 'Lesotho', 'Lesotho', '266', 'AF', 'Maseru', 'LSL', 'en,st'),
('LS', 'Lesotho', 'Lesotho', '266', 'AF', 'Maseru', 'LSL,ZAR', 'en,st'),
('LT', 'Lithuania', 'Lietuva', '370', 'EU', 'Vilnius', 'LTL', 'lt'),
('LU', 'Luxembourg', 'Luxembourg', '352', 'EU', 'Luxembourg', 'EUR', 'fr,de,lb'),
('LV', 'Latvia', 'Latvija', '371', 'EU', 'Riga', 'EUR', 'lv'),
Expand Down Expand Up @@ -188,7 +188,7 @@ VALUES
('MX', 'Mexico', 'México', '52', 'NA', 'Mexico City', 'MXN', 'es'),
('MY', 'Malaysia', 'Malaysia', '60', 'AS', 'Kuala Lumpur', 'MYR', ''),
('MZ', 'Mozambique', 'Moçambique', '258', 'AF', 'Maputo', 'MZN', 'pt'),
('NA', 'Namibia', 'Namibia', '264', 'AF', 'Windhoek', 'NAD', 'en,af'),
('NA', 'Namibia', 'Namibia', '264', 'AF', 'Windhoek', 'NAD,ZAR', 'en,af'),
('NC', 'New Caledonia', 'Nouvelle-Calédonie', '687', 'OC', 'Nouméa', 'XPF', 'fr'),
('NE', 'Niger', 'Niger', '227', 'AF', 'Niamey', 'XOF', 'fr'),
('NF', 'Norfolk Island', 'Norfolk Island', '672', 'OC', 'Kingston', 'AUD', 'en'),
Expand All @@ -201,7 +201,7 @@ VALUES
('NU', 'Niue', 'Niuē', '683', 'OC', 'Alofi', 'NZD', 'en'),
('NZ', 'New Zealand', 'New Zealand', '64', 'OC', 'Wellington', 'NZD', 'en,mi'),
('OM', 'Oman', 'عمان', '968', 'AS', 'Muscat', 'OMR', 'ar'),
('PA', 'Panama', 'Panamá', '507', 'NA', 'Panama City', 'PAB', 'es'),
('PA', 'Panama', 'Panamá', '507', 'NA', 'Panama City', 'PAB,USD', 'es'),
('PE', 'Peru', 'Perú', '51', 'SA', 'Lima', 'PEN', 'es'),
('PF', 'French Polynesia', 'Polynésie française', '689', 'OC', 'Papeetē', 'XPF', 'fr'),
('PG', 'Papua New Guinea', 'Papua Niugini', '675', 'OC', 'Port Moresby', 'PGK', 'en'),
Expand Down Expand Up @@ -238,7 +238,7 @@ VALUES
('SR', 'Suriname', 'Suriname', '597', 'SA', 'Paramaribo', 'SRD', 'nl'),
('SS', 'South Sudan', 'South Sudan', '211', 'AF', 'Juba', 'SSP', 'en'),
('ST', 'São Tomé and Príncipe', 'São Tomé e Príncipe', '239', 'AF', 'São Tomé', 'STD', 'pt'),
('SV', 'El Salvador', 'El Salvador', '503', 'NA', 'San Salvador', 'SVC', 'es'),
('SV', 'El Salvador', 'El Salvador', '503', 'NA', 'San Salvador', 'SVC,USD', 'es'),
('SX', 'Sint Maarten', 'Sint Maarten', '1721', 'NA', 'Philipsburg', 'ANG', 'nl,en'),
('SY', 'Syria', 'سوريا', '963', 'AS', 'Damascus', 'SYP', 'ar'),
('SZ', 'Swaziland', 'Swaziland', '268', 'AF', 'Lobamba', 'SZL', 'en,ss'),
Expand All @@ -261,8 +261,8 @@ VALUES
('UA', 'Ukraine', 'Україна', '380', 'EU', 'Kiev', 'UAH', 'uk'),
('UG', 'Uganda', 'Uganda', '256', 'AF', 'Kampala', 'UGX', 'en,sw'),
('UM', 'U.S. Minor Outlying Islands', 'United States Minor Outlying Islands', '', 'OC', '', 'USD', 'en'),
('US', 'United States', 'United States', '1', 'NA', 'Washington D.C.', 'USD', 'en'),
('UY', 'Uruguay', 'Uruguay', '598', 'SA', 'Montevideo', 'UYI', 'es'),
('US', 'United States', 'United States', '1', 'NA', 'Washington D.C.', 'USD,USN,USS', 'en'),
('UY', 'Uruguay', 'Uruguay', '598', 'SA', 'Montevideo', 'UYI,UYU', 'es'),
('UZ', 'Uzbekistan', 'O‘zbekiston', '998', 'AS', 'Tashkent', 'UZS', 'uz,ru'),
('VA', 'Vatican City', 'Vaticano', '39066,379', 'EU', 'Vatican City', 'EUR', 'it,la'),
('VC', 'Saint Vincent and the Grenadines', 'Saint Vincent and the Grenadines', '1784', 'NA', 'Kingstown', 'XCD', 'en'),
Expand Down

0 comments on commit 08d70c0

Please sign in to comment.