31 lines
700 B
Python
31 lines
700 B
Python
"""base_adjustment_1.5
|
|
|
|
Revision ID: 8e2919155783
|
|
Revises: b7441b91f586
|
|
Create Date: 2026-04-01 19:14:53.327618
|
|
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = '8e2919155783'
|
|
down_revision: Union[str, None] = 'b7441b91f586'
|
|
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 ###
|