This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "id": 3901, | |
| "name": "Badakhshan", | |
| "country_id": 1, | |
| "country_code": "AF", | |
| "state_code": "BDS" | |
| }, | |
| { | |
| "id": 3871, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "id": 1, | |
| "name": "Afghanistan", | |
| "iso3": "AFG", | |
| "iso2": "AF", | |
| "phone_code": "93", | |
| "capital": "Kabul", | |
| "currency": "AFN" | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE currencies( | |
| symbol VARCHAR(10) NOT NULL PRIMARY KEY, | |
| name VARCHAR(50) NOT NULL, | |
| symbol_native VARCHAR(10) NOT NULL, | |
| decimal_digits INTEGER NOT NULL, | |
| rounding NUMERIC(4,2) NOT NULL, | |
| code VARCHAR(10) NOT NULL, | |
| name_plural VARCHAR(50) NOT NULL | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "symbol": "$", | |
| "name": "US Dollar", | |
| "symbol_native": "$", | |
| "decimal_digits": 2, | |
| "rounding": 0, | |
| "code": "USD", | |
| "name_plural": "US dollars" | |
| }, |