31 lines
695 B
Python
31 lines
695 B
Python
"""20251121190557
|
|
|
|
Revision ID: 7df4df14dda4
|
|
Revises: d00648d486ca
|
|
Create Date: 2025-11-21 19:05:58.333570
|
|
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = '7df4df14dda4'
|
|
down_revision: Union[str, None] = 'd00648d486ca'
|
|
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 ###
|