diff options
Diffstat (limited to 'alembic/versions')
-rw-r--r-- | alembic/versions/a773ce65a262_create_the_initial_db.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/alembic/versions/a773ce65a262_create_the_initial_db.py b/alembic/versions/a773ce65a262_create_the_initial_db.py new file mode 100644 index 0000000..fad15d3 --- /dev/null +++ b/alembic/versions/a773ce65a262_create_the_initial_db.py @@ -0,0 +1,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 ### |