31 lines
700 B
Python
31 lines
700 B
Python
"""fix-moves-relations
|
|
|
|
Revision ID: b7bce6fc0d7e
|
|
Revises: fbbb979fa356
|
|
Create Date: 2026-04-01 20:05:19.603068
|
|
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = 'b7bce6fc0d7e'
|
|
down_revision: Union[str, None] = 'fbbb979fa356'
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|