Skip to content

Instantly share code, notes, and snippets.

View dragonfleas's full-sized avatar
😁
Building something exciting

Devin Lauderdale dragonfleas

😁
Building something exciting
  • Synapse Studios
  • Tulsa, Oklahoma
  • 04:37 (UTC -06:00)
  • X @dragonfleas
View GitHub Profile
@ereli
ereli / countries.sql
Last active October 30, 2024 15:34 — forked from adhipg/countries.sql
Sql dump of all the Countries, Country Codes, Phone codes. PostgreSQL compatible
CREATE SEQUENCE country_seq;
CREATE TABLE IF NOT EXISTS country (
id int NOT NULL DEFAULT NEXTVAL ('country_seq'),
iso char(2) NOT NULL,
name varchar(80) NOT NULL,
nicename varchar(80) NOT NULL,
iso3 char(3) DEFAULT NULL,
numcode smallint DEFAULT NULL,
phonecode int NOT NULL,