add creation of entries in the database

This commit is contained in:
2021-09-03 11:51:26 +02:00
parent a4372c6872
commit 2688fb7cec
7 changed files with 409 additions and 16 deletions

1
db/create_db.sh Executable file
View File

@@ -0,0 +1 @@
sqlite3 db.db < create_db.sql

4
db/create_db.sql Normal file
View File

@@ -0,0 +1,4 @@
CREATE TABLE IF NOT EXISTS LINKS(
UUID TEXT NOT NULL PRIMARY KEY,
DESTINATION TEXT NOT NULL
);