From f82d954355809d9d063ddf4e93cadac6f7f76dde Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Wed, 4 Mar 2026 13:40:19 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20Migration=20022=20=E2=80=94=20schema=20p?= =?UTF-8?q?ublic=20statt=20compliance=20(compliance=5Flegal=5Ftemplates)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/apply_block_markers_022.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/apply_block_markers_022.py b/scripts/apply_block_markers_022.py index b9c0181..b3f3091 100644 --- a/scripts/apply_block_markers_022.py +++ b/scripts/apply_block_markers_022.py @@ -103,7 +103,7 @@ def main() -> None: for doc_type, lang, transforms in TARGETS: rows = conn.execute( text( - 'SELECT id, title, content FROM compliance.compliance_legal_templates ' + 'SELECT id, title, content FROM public.compliance_legal_templates ' 'WHERE document_type = :doc_type AND language = :lang' ), {'doc_type': doc_type, 'lang': lang} @@ -133,7 +133,7 @@ def main() -> None: conn.execute( text( - 'UPDATE compliance.compliance_legal_templates ' + 'UPDATE public.compliance_legal_templates ' 'SET content = :content, updated_at = NOW() ' 'WHERE id = :id' ),