feat: add settings key-value table migration
This commit is contained in:
parent
11e1de1cf8
commit
a926da1c30
1 changed files with 5 additions and 0 deletions
5
services/mam-api/src/db/migrations/006-settings.sql
Normal file
5
services/mam-api/src/db/migrations/006-settings.sql
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
CREATE TABLE IF NOT EXISTS settings (
|
||||||
|
key TEXT PRIMARY KEY,
|
||||||
|
value TEXT,
|
||||||
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
Loading…
Reference in a new issue