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