From 2b007a5a500b635ddcfe4b9a512777f3d21fa6b6 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Wed, 3 Feb 2021 14:29:24 -0700 Subject: Initial commit of project --- .../versions/a773ce65a262_create_the_initial_db.py | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 alembic/versions/a773ce65a262_create_the_initial_db.py (limited to 'alembic/versions') 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 ### -- cgit v1.2.3