From 64f8241e741a1a30e9bec9e00b58f6c0b440cfd5 Mon Sep 17 00:00:00 2001 From: Luc Didry Date: Tue, 14 Jan 2025 17:06:59 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20=E2=80=94=20Avoid=20warning=20fr?= =?UTF-8?q?om=20MySQL=20only=20alembic=20instructions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ .../versions/bd4b4962696a_use_bigint_for_results_id_field.py | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d13d61..c95cc59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +- 🩹 — Avoid warning from MySQL only alembic instructions + ## 0.7.0 Date: 2025-01-14 diff --git a/argos/server/migrations/versions/bd4b4962696a_use_bigint_for_results_id_field.py b/argos/server/migrations/versions/bd4b4962696a_use_bigint_for_results_id_field.py index 766428e..0403574 100644 --- a/argos/server/migrations/versions/bd4b4962696a_use_bigint_for_results_id_field.py +++ b/argos/server/migrations/versions/bd4b4962696a_use_bigint_for_results_id_field.py @@ -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, )