init codebase
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
CREATE TABLE system_settings (
|
||||
key text PRIMARY KEY,
|
||||
value text NOT NULL,
|
||||
updated_at timestamptz DEFAULT now()
|
||||
);
|
||||
--;;
|
||||
INSERT INTO system_settings (key, value) VALUES ('setup_completed', 'false')
|
||||
ON CONFLICT (key) DO NOTHING;
|
||||
Reference in New Issue
Block a user