diff --git a/backend/alembic/versions/46625e4745d4_remove_native_enum.py b/backend/alembic/versions/46625e4745d4_remove_native_enum.py index beb677d5e..3f065f5cf 100644 --- a/backend/alembic/versions/46625e4745d4_remove_native_enum.py +++ b/backend/alembic/versions/46625e4745d4_remove_native_enum.py @@ -22,6 +22,7 @@ def upgrade() -> None: # To remove those complications, all Enums are only handled application side moving forward. # This migration exists to ensure that existing users don't run into upgrade issues. op.alter_column("index_attempt", "status", type_=String) + op.alter_column("connector_credential_pair", "last_attempt_status", type_=String) op.execute("DROP TYPE IF EXISTS indexingstatus")