Initial commit

This commit is contained in:
2025-01-29 16:35:05 +01:00
commit 6020624ed9
6 changed files with 95 additions and 0 deletions

6
migrations/1_init.sql Normal file
View File

@@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS videos (
id INTEGER PRIMARY KEY AUTOINCREMENT,
title TEXT NOT NULL,
url TEXT NOT NULL UNIQUE,
uploaded_at DATETIME DEFAULT CURRENT_TIMESTAMP
);