Merge branch 'master' into umami-software/master

This commit is contained in:
Edwin ANNE 2026-01-23 21:28:40 +01:00
commit a9de07a2f1
15 changed files with 831 additions and 29 deletions

View file

@ -0,0 +1,10 @@
-- Create table setting
CREATE TABLE IF NOT EXISTS "setting" (
"setting_id" uuid PRIMARY KEY,
"key" varchar(255) UNIQUE NOT NULL,
"value" varchar(4000),
"created_at" timestamptz(6) DEFAULT now(),
"updated_at" timestamptz(6)
);