Skip to content

Instantly share code, notes, and snippets.

@QiMata
Created June 18, 2020 16:34
Show Gist options
  • Save QiMata/ad12fbbf5736fb582249694ac9627757 to your computer and use it in GitHub Desktop.
Save QiMata/ad12fbbf5736fb582249694ac9627757 to your computer and use it in GitHub Desktop.
Table to be logged
create table address
(
address_id integer not null,
type varchar(100),
street1 varchar(120) not null,
street2 varchar(120),
street3 varchar(120),
street4 varchar(120),
city varchar(80),
po_box_code varchar(20) not null,
phone_number varchar(50),
date_created timestamp with time zone not null default current_timestamp
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment