Rename website column. Table component.

This commit is contained in:
Mike Cao 2020-08-06 23:02:24 -07:00
parent a09867f28c
commit 000f84df96
8 changed files with 66 additions and 9 deletions

View file

@ -11,7 +11,8 @@ create table website (
website_id serial primary key,
website_uuid uuid unique not null,
user_id int not null references account(user_id) on delete cascade,
label varchar(100) not null,
name varchar(100) not null,
domain varchar(500),
created_at timestamp with time zone default current_timestamp
);