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" )