SysOps: voice-agy-webbuilder-backup — 2026-06-23 10:04 UTC

This commit is contained in:
sysops
2026-06-23 10:04:23 +00:00
parent 3bf15c4850
commit 26fe76afdd
165 changed files with 47427 additions and 1264 deletions
+10
View File
@@ -0,0 +1,10 @@
-- Editable workspace drafts for Docling / document editor
CREATE TABLE IF NOT EXISTS document_workspace (
storage_path TEXT PRIMARY KEY,
source_format VARCHAR(32) DEFAULT 'markdown',
content TEXT NOT NULL DEFAULT '',
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);
CREATE INDEX IF NOT EXISTS idx_document_workspace_updated ON document_workspace (updated_at DESC);