🩹 — Avoid warning from MySQL only alembic instructions

This commit is contained in:
Luc Didry 2025-01-14 17:06:59 +01:00
parent 3d209fed22
commit 64f8241e74
No known key found for this signature in database
GPG key ID: EA868E12D0257E3C
2 changed files with 2 additions and 2 deletions

View file

@ -2,6 +2,8 @@
## [Unreleased]
- 🩹 — Avoid warning from MySQL only alembic instructions
## 0.7.0
Date: 2025-01-14

View file

@ -27,7 +27,6 @@ def upgrade() -> None:
existing_type=sa.INTEGER(),
type_=sa.BigInteger(),
existing_nullable=False,
autoincrement=True,
)
@ -40,5 +39,4 @@ def downgrade() -> None:
existing_type=sa.BigInteger(),
type_=sa.INTEGER(),
existing_nullable=False,
autoincrement=True,
)