fix(migrations): fix down_revision type annotation in 042_add_file_shares

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
Agent-Logs-Url: https://github.com/christianlouis/DocuElevate/sessions/118588f1-63ae-4e6e-a322-783912f7c52e
This commit is contained in:
copilot-swe-agent[bot]
2026-03-22 14:33:48 +00:00
parent 124b802c8f
commit 5f5e18d261
+3 -1
View File
@@ -6,12 +6,14 @@ Create Date: 2026-03-22
""" """
from typing import Union
import sqlalchemy as sa import sqlalchemy as sa
from alembic import op from alembic import op
# revision identifiers, used by Alembic. # revision identifiers, used by Alembic.
revision: str = "042_add_file_shares" revision: str = "042_add_file_shares"
down_revision: str = "041_add_document_comments_and_annotations" down_revision: Union[str, None] = "041_add_document_comments_and_annotations"
branch_labels = None branch_labels = None
depends_on = None depends_on = None