feat: add settings table migration

This commit is contained in:
Jonny 2026-09-13 22:03:58 +02:00
parent 84d8288850
commit b1ba284ad7
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
CREATE TABLE settings (
key VARCHAR(100) PRIMARY KEY,
value TEXT NOT NULL,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);