33 lines
761 B
Python
33 lines
761 B
Python
|
|
"""initial add
|
||
|
|
|
||
|
|
Revision ID: 095797896701
|
||
|
|
Revises: 9071255c7ee9
|
||
|
|
Create Date: 2026-06-14 16:30:54.744028
|
||
|
|
|
||
|
|
"""
|
||
|
|
from typing import Sequence, Union
|
||
|
|
|
||
|
|
from alembic import op
|
||
|
|
import sqlalchemy as sa
|
||
|
|
|
||
|
|
|
||
|
|
# revision identifiers, used by Alembic.
|
||
|
|
revision: str = '095797896701'
|
||
|
|
down_revision: Union[str, Sequence[str], None] = '9071255c7ee9'
|
||
|
|
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 ###
|