initial commit

This commit is contained in:
2023-06-30 16:22:08 +02:00
commit 78f3961b11
39 changed files with 5136 additions and 0 deletions

12
db/schema.sql Normal file
View File

@@ -0,0 +1,12 @@
CREATE TABLE Stream (
id TEXT PRIMARY KEY NOT NULL UNIQUE,
stream_date TEXT NOT NULL,
filename TEXT NOT NULL UNIQUE,
format TEXT NOT NULL,
title TEXT,
description TEXT,
tags TEXT,
length_seconds INT NOT NULL,
tracks TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL
);