Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Lint check
  • Loading branch information
lukehinds committed May 1, 2025
commit 6989262e55a6092d73246f3976c1f14eaa8d4254
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@
Create Date: 2025-05-01 19:17:41.766575

"""

from typing import Sequence, Union

from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision: str = '736fb0c10480'
down_revision: Union[str, None] = 'e4c05d7591a8'
revision: str = "736fb0c10480"
down_revision: Union[str, None] = "e4c05d7591a8"
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None

Expand Down
Loading