mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
10 lines
239 B
SQL
10 lines
239 B
SQL
-- 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)
|
|
);
|
|
|
|
|