Initial commit
This commit is contained in:
commit
6848cdd062
17 changed files with 646 additions and 0 deletions
9
migrations/001_create_links_table.sql
Normal file
9
migrations/001_create_links_table.sql
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
create table if not exists Links (
|
||||
uuid text not null,
|
||||
href text not null,
|
||||
created_at datetime not null,
|
||||
updated_at datetime not null,
|
||||
title text,
|
||||
description text
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue