Some work with FastAPI and SQLAlchemy, including automated alembic migrations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
324 B

"""baseline
Revision ID: b00a3ca977cc
Revises:
Create Date: 2019-07-02 18:51:54.019630
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = 'b00a3ca977cc'
down_revision = None
branch_labels = None
depends_on = None
def upgrade():
pass
def downgrade():
pass