forked from kodorvan/stcs
33 lines
787 B
Python
33 lines
787 B
Python
"""update last side the conditional data
|
|
|
|
Revision ID: 3534adf891fc
|
|
Revises: ef38c90eed55
|
|
Create Date: 2025-09-30 08:39:02.971158
|
|
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = '3534adf891fc'
|
|
down_revision: Union[str, Sequence[str], None] = 'ef38c90eed55'
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
"""Upgrade schema."""
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
"""Downgrade schema."""
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|