🩹 — Add missing enum removal

This commit is contained in:
Luc Didry 2025-02-12 15:04:48 +01:00
parent ca709dca62
commit 60f3079140
No known key found for this signature in database
GPG key ID: EA868E12D0257E3C
2 changed files with 4 additions and 1 deletions

View file

@ -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

View file

@ -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)