31 lines
695 B
Python
31 lines
695 B
Python
"""20251117140813
|
|
|
|
Revision ID: afe962cdb0b1
|
|
Revises: fda52b5e7c38
|
|
Create Date: 2025-11-17 14:08:13.933632
|
|
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = 'afe962cdb0b1'
|
|
down_revision: Union[str, None] = 'fda52b5e7c38'
|
|
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 ###
|