fix: db migrations on downgrade (#28106)

This commit is contained in:
Daniel Vaz Gaspar 2024-04-17 16:37:07 +01:00 committed by GitHub
parent 8a390f03e3
commit 5ece57bd34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 2 additions and 78 deletions

View File

@ -26,7 +26,7 @@ from sqlalchemy.dialects import postgresql
# revision identifiers, used by Alembic.
revision = "c22cb5c2e546"
down_revision = "be1b217cd8cd"
down_revision = "678eefb4ab44"
def upgrade():

View File

@ -24,7 +24,7 @@ Create Date: 2024-04-08 15:43:29.682687
# revision identifiers, used by Alembic.
revision = "5ad7321c2169"
down_revision = "678eefb4ab44"
down_revision = "c22cb5c2e546"
from alembic import op
from sqlalchemy.exc import SQLAlchemyError

View File

@ -1,38 +0,0 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""empty message
Revision ID: bbf146925528
Revises: ('678eefb4ab44', 'c22cb5c2e546')
Create Date: 2024-04-11 00:49:51.592325
"""
# revision identifiers, used by Alembic.
revision = "bbf146925528"
down_revision = ("678eefb4ab44", "c22cb5c2e546")
import sqlalchemy as sa
from alembic import op
def upgrade():
pass
def downgrade():
pass

View File

@ -1,38 +0,0 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""empty message
Revision ID: 0dc386701747
Revises: ('5ad7321c2169', 'bbf146925528')
Create Date: 2024-04-15 16:06:29.946059
"""
# revision identifiers, used by Alembic.
revision = "0dc386701747"
down_revision = ("5ad7321c2169", "bbf146925528")
import sqlalchemy as sa
from alembic import op
def upgrade():
pass
def downgrade():
pass