Complete local HTTP endpoint parity

This commit is contained in:
Georg Bauer
2026-07-25 14:18:57 +02:00
parent a1761fa731
commit 668d8b787e
13 changed files with 493 additions and 69 deletions

View File

@@ -0,0 +1,2 @@
ALTER TABLE preferences DROP COLUMN endpoint_cors;
ALTER TABLE preferences DROP COLUMN endpoint_enabled;

View File

@@ -0,0 +1,4 @@
ALTER TABLE preferences ADD COLUMN endpoint_enabled BOOLEAN NOT NULL DEFAULT TRUE
CHECK (endpoint_enabled IN (FALSE, TRUE));
ALTER TABLE preferences ADD COLUMN endpoint_cors BOOLEAN NOT NULL DEFAULT FALSE
CHECK (endpoint_cors IN (FALSE, TRUE));