From 8ac5eb17c228dc5c6101af977aa10875a80d94a0 Mon Sep 17 00:00:00 2001 From: TehCupcakes Date: Wed, 7 Aug 2024 09:20:46 -0400 Subject: [PATCH] idac: Fix idac_round_info table migration --- .../versions/202d1ada1b39_idac_rounds_event_info_added.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/data/alembic/versions/202d1ada1b39_idac_rounds_event_info_added.py b/core/data/alembic/versions/202d1ada1b39_idac_rounds_event_info_added.py index 5868ecc..b792627 100644 --- a/core/data/alembic/versions/202d1ada1b39_idac_rounds_event_info_added.py +++ b/core/data/alembic/versions/202d1ada1b39_idac_rounds_event_info_added.py @@ -18,8 +18,8 @@ depends_on = None def upgrade(): - op.drop_table("idac_round_info") - op.drop_table("idac_user_round_info") + op.execute("DROP TABLE IF EXISTS idac_round_info") + op.execute("DROP TABLE IF EXISTS idac_user_round_info") op.create_table( "idac_round_info", -- 2.39.2