From e9100015186a88c3b7a12b99b5cdc9639236a0ee Mon Sep 17 00:00:00 2001 From: Anish Sarkar <104695310+AnishSarkar22@users.noreply.github.com> Date: Tue, 17 Feb 2026 12:00:33 +0530 Subject: [PATCH] fix: update migration messages for clarity in source_markdown migration process --- .../alembic/versions/101_add_source_markdown_to_documents.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/surfsense_backend/alembic/versions/101_add_source_markdown_to_documents.py b/surfsense_backend/alembic/versions/101_add_source_markdown_to_documents.py index 2c4854efd..538cae2a1 100644 --- a/surfsense_backend/alembic/versions/101_add_source_markdown_to_documents.py +++ b/surfsense_backend/alembic/versions/101_add_source_markdown_to_documents.py @@ -69,7 +69,7 @@ def _populate_source_markdown(conn, batch_size: int = 500) -> None: total = count_result.scalar() if total == 0: - print("✓ No documents with blocknote_document need migration") + print("No documents with blocknote_document need migration") return print(f" Migrating {total} documents (with blocknote_document) to source_markdown...") @@ -129,7 +129,7 @@ def _populate_source_markdown(conn, batch_size: int = 500) -> None: offset += batch_size print( - f"✓ source_markdown migration complete: {migrated} migrated, " + f"source_markdown migration complete: {migrated} migrated, " f"{failed} failed out of {total} total" )