mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Add OIDC authentification in project
This commit is contained in:
parent
777515f754
commit
fa2c915fe1
16 changed files with 545 additions and 8 deletions
10
db/postgresql/migrations/14_add_setting/migration.sql
Normal file
10
db/postgresql/migrations/14_add_setting/migration.sql
Normal 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)
|
||||
);
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue