feat: add settings table migration
This commit is contained in:
parent
84d8288850
commit
b1ba284ad7
|
|
@ -0,0 +1,5 @@
|
|||
CREATE TABLE settings (
|
||||
key VARCHAR(100) PRIMARY KEY,
|
||||
value TEXT NOT NULL,
|
||||
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
||||
);
|
||||
Loading…
Reference in New Issue