Build cli using rollup.

This commit is contained in:
Mike Cao 2020-07-24 17:00:56 -07:00
parent 533ffbda13
commit 0f0b1e39e7
10 changed files with 175 additions and 23 deletions

View file

@ -11,7 +11,7 @@ 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,
hostname varchar(100) not null,
label varchar(100) not null,
created_at timestamp with time zone default current_timestamp
);