32 lines
728 B
Python
32 lines
728 B
Python
"""nome-usuario
|
|
|
|
Revision ID: 223ec99140a9
|
|
Revises: 2bc15d1e557d
|
|
Create Date: 2024-12-28 05:55:10.230627
|
|
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
import fastapi_users_db_sqlalchemy
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = '223ec99140a9'
|
|
down_revision: Union[str, None] = '2bc15d1e557d'
|
|
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 ###
|