Move app settings schema into SQL migration

This commit is contained in:
Abel Luck 2026-03-30 18:47:36 +02:00
parent 2092f66dcd
commit 1d5126c2f8
4 changed files with 74 additions and 28 deletions

View file

@ -0,0 +1,4 @@
CREATE TABLE IF NOT EXISTS app_setting (
key TEXT PRIMARY KEY,
value TEXT NOT NULL
);