30 lines
709 B
Python
30 lines
709 B
Python
"""Изменение models.py
|
|
|
|
Revision ID: 6b866e6065f2
|
|
Revises: 8422962a574b
|
|
Create Date: 2024-01-31 16:50:40.170909
|
|
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = '6b866e6065f2'
|
|
down_revision: Union[str, None] = '8422962a574b'
|
|
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 ###
|