Skip to content

Commit

Permalink
Update migration
Browse files Browse the repository at this point in the history
  • Loading branch information
slimovich committed Jul 1, 2020
1 parent f6b2d06 commit 1f04f9b
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@


def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_table("user base")
# ### end Alembic commands ###


def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.create_table(
"user base",
Expand All @@ -43,3 +37,9 @@ def downgrade():
sa.UniqueConstraint("email", name="user base_email_key"),
)
# ### end Alembic commands ###


def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_table("user base")
# ### end Alembic commands ###

0 comments on commit 1f04f9b

Please sign in to comment.