Skip to content

Instantly share code, notes, and snippets.

View dragonfleas's full-sized avatar
😢
Reviewing dependabot PRs for the next 3 eternities

Devin Lauderdale dragonfleas

😢
Reviewing dependabot PRs for the next 3 eternities
  • Synapse Studios
  • Tulsa, Oklahoma
  • 11:52 (UTC -05:00)
View GitHub Profile
@ereli
ereli / countries.sql
Last active June 6, 2024 14:22 — 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,