diff --git a/CHANGELOG.md b/CHANGELOG.md index f379ecc..99773c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,13 @@ ## [Unreleased] +- 🐛 — Fix method enum in tasks table (thx to Dryusdan) + ## 0.7.3 Date: 2025-01-26 -🐛 — Fix bug in retry_before_notification logic when success +- 🐛 — Fix bug in retry_before_notification logic when success ## 0.7.2 diff --git a/argos/server/migrations/versions/dcf73fa19fce_specify_check_method.py b/argos/server/migrations/versions/dcf73fa19fce_specify_check_method.py index 39cacbe..39e0d49 100644 --- a/argos/server/migrations/versions/dcf73fa19fce_specify_check_method.py +++ b/argos/server/migrations/versions/dcf73fa19fce_specify_check_method.py @@ -48,3 +48,4 @@ def upgrade() -> None: def downgrade() -> None: with op.batch_alter_table("tasks", schema=None) as batch_op: batch_op.drop_column("method") + sa.Enum(name="method").drop(op.get_bind(), checkfirst=True)