31 lines
676 B
Python
31 lines
676 B
Python
|
"""Initial migration
|
||
|
|
||
|
Revision ID: 2ef68467c443
|
||
|
Revises:
|
||
|
Create Date: 2024-09-22 15:06:36.590091
|
||
|
|
||
|
"""
|
||
|
from typing import Sequence, Union
|
||
|
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision: str = '2ef68467c443'
|
||
|
down_revision: Union[str, None] = None
|
||
|
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 ###
|