aboutsummaryrefslogtreecommitdiff
path: root/alembic/versions/a773ce65a262_create_the_initial_db.py
blob: fad15d344facedf67488cb512acf91bed82398cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""Create the initial db

Revision ID: a773ce65a262
Revises: 
Create Date: 2021-02-03 21:24:54.897514

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = 'a773ce65a262'
down_revision = None
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    pass
    # ### end Alembic commands ###


def downgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    pass
    # ### end Alembic commands ###