forked from rucio/rucio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix SUBSCRIPTIONS_HISTORY integrity error
- Loading branch information
serfon
committed
Jul 9, 2024
1 parent
98b40a9
commit 7e8e3e9
Showing
5 changed files
with
88 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
...io/db/sqla/migrate_repo/versions/b5493606bbf5_fix_primary_key_for_subscription_history.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Copyright European Organization for Nuclear Research (CERN) since 2012 | ||
# | ||
# Licensed 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. | ||
|
||
''' Fix primary key for subscription_history ''' | ||
|
||
|
||
from alembic import context | ||
from alembic.op import create_primary_key, drop_constraint | ||
|
||
# Alembic revision identifiers | ||
revision = 'b5493606bbf5' | ||
down_revision = 'a08fa8de1545' | ||
|
||
|
||
def upgrade(): | ||
''' | ||
Upgrade the database to this revision | ||
''' | ||
if context.get_context().dialect.name in ['oracle', 'mysql', 'postgresql']: | ||
drop_constraint(constraint_name='SUBSCRIPTIONS_PK', table_name='subscriptions_history', type_='primary') | ||
create_primary_key('SUBSCRIPTIONS_HISTORY_PK', 'subscriptions_history', ['id', 'updated_at']) | ||
|
||
|
||
def downgrade(): | ||
''' | ||
Downgrade the database to the previous revision | ||
''' | ||
if context.get_context().dialect.name in ['oracle', 'mysql', 'postgresql']: | ||
drop_constraint(constraint_name='SUBSCRIPTIONS_HISTORY_PK', table_name='subscriptions_history', type_='primary') | ||
create_primary_key('SUBSCRIPTIONS_PK', 'subscriptions_history', ['id', 'updated_at']) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters