33 lines
756 B
Python
33 lines
756 B
Python
|
|
"""update
|
||
|
|
|
||
|
|
Revision ID: 89b6c7607e31
|
||
|
|
Revises: 78ead4bb04a8
|
||
|
|
Create Date: 2026-06-14 16:46:37.313636
|
||
|
|
|
||
|
|
"""
|
||
|
|
from typing import Sequence, Union
|
||
|
|
|
||
|
|
from alembic import op
|
||
|
|
import sqlalchemy as sa
|
||
|
|
|
||
|
|
|
||
|
|
# revision identifiers, used by Alembic.
|
||
|
|
revision: str = '89b6c7607e31'
|
||
|
|
down_revision: Union[str, Sequence[str], None] = '78ead4bb04a8'
|
||
|
|
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 ###
|