mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 09:52:38 +02:00
🩹 — Avoid warning from MySQL only alembic instructions
This commit is contained in:
parent
3d209fed22
commit
64f8241e74
2 changed files with 2 additions and 2 deletions
|
@ -2,6 +2,8 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
- 🩹 — Avoid warning from MySQL only alembic instructions
|
||||
|
||||
## 0.7.0
|
||||
|
||||
Date: 2025-01-14
|
||||
|
|
|
@ -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,
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue