1
0
Fork 0

Publish shitty code

This commit is contained in:
Honbra 2024-01-30 19:27:14 +01:00
commit 2e36ee2758
Signed by: honbra
GPG key ID: B61CC9ADABE2D952
24 changed files with 2845 additions and 0 deletions

View file

@ -0,0 +1 @@
DROP TABLE IF EXISTS link;

View file

@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS link (
id UUID PRIMARY KEY,
slug TEXT UNIQUE NOT NULL,
destination TEXT NOT NULL,
visit_count INT NOT NULL DEFAULT 0
);