Add existing codebase
This commit is contained in:
commit
c23a68347b
16 changed files with 807 additions and 0 deletions
10
migrations/001_add_links.sql
Normal file
10
migrations/001_add_links.sql
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
CREATE TABLE links (
|
||||
id varchar(64) primary key,
|
||||
name varchar(128) not null,
|
||||
redirect_url varchar not null,
|
||||
creation_time timestamp not null
|
||||
);
|
||||
|
||||
---- create above / drop below ----
|
||||
|
||||
DROP TABLE links;
|
||||
Loading…
Add table
Add a link
Reference in a new issue