Initial commit

This commit is contained in:
F4 2024-09-20 19:22:01 +01:00
commit 6848cdd062
17 changed files with 646 additions and 0 deletions

View 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
);