🎉 Initialize FastAPI boilerplate
This commit is contained in:
parent
06ffc42ec6
commit
248d73806f
21 changed files with 638 additions and 0 deletions
41
alembic/versions/b9ad7be93704_init.py
Normal file
41
alembic/versions/b9ad7be93704_init.py
Normal file
|
@ -0,0 +1,41 @@
|
|||
"""init
|
||||
|
||||
Revision ID: b9ad7be93704
|
||||
Revises:
|
||||
Create Date: 2023-08-07 21:31:23.021550
|
||||
|
||||
"""
|
||||
from typing import Sequence, Union
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision: str = 'b9ad7be93704'
|
||||
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! ###
|
||||
op.create_table('item',
|
||||
sa.Column('id', sa.Integer(), nullable=False),
|
||||
sa.Column('title', sa.String(), nullable=True),
|
||||
sa.Column('description', sa.String(), nullable=True),
|
||||
sa.PrimaryKeyConstraint('id')
|
||||
)
|
||||
op.create_index(op.f('ix_item_description'), 'item', ['description'], unique=False)
|
||||
op.create_index(op.f('ix_item_id'), 'item', ['id'], unique=False)
|
||||
op.create_index(op.f('ix_item_title'), 'item', ['title'], unique=False)
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade() -> None:
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_index(op.f('ix_item_title'), table_name='item')
|
||||
op.drop_index(op.f('ix_item_id'), table_name='item')
|
||||
op.drop_index(op.f('ix_item_description'), table_name='item')
|
||||
op.drop_table('item')
|
||||
# ### end Alembic commands ###
|
Loading…
Add table
Add a link
Reference in a new issue