Created
June 18, 2020 16:34
-
-
Save QiMata/ad12fbbf5736fb582249694ac9627757 to your computer and use it in GitHub Desktop.
Table to be logged
This file contains 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 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