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.
Adding db schema changes for metadata deletion
- Loading branch information
1 parent
2b628c2
commit 4bf5318
Showing
3 changed files
with
73 additions
and
1 deletion.
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
57 changes: 57 additions & 0 deletions
57
lib/rucio/db/sqla/migrate_repo/versions/b0070f3695c8_add_deletedidmeta_table.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,57 @@ | ||
# 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. | ||
|
||
''' Add deleted_did_meta table ''' | ||
|
||
import sqlalchemy as sa | ||
from alembic import context | ||
from alembic.op import create_index, create_primary_key, create_table, drop_table | ||
|
||
from rucio.db.sqla.constants import DIDType | ||
from rucio.db.sqla.types import JSON | ||
|
||
# Alembic revision identifiers | ||
revision = 'b0070f3695c8' | ||
down_revision = 'b5493606bbf5' | ||
|
||
|
||
def upgrade(): | ||
''' | ||
Upgrade the database to this revision | ||
''' | ||
|
||
if context.get_context().dialect.name in ['oracle', 'mysql', 'postgresql']: | ||
create_table('deleted_did_meta', | ||
sa.Column('scope', sa.String(25)), | ||
sa.Column('name', sa.String(255)), | ||
sa.Column('did_type', sa.Enum(DIDType, | ||
name='DEL_DID_META_DID_TYPE_CHK', | ||
create_constraint=True, | ||
values_callable=lambda obj: [e.value for e in obj])), | ||
sa.Column('meta', JSON()), | ||
sa.Column('created_at', sa.DateTime), | ||
sa.Column('updated_at', sa.DateTime), | ||
sa.Column('deleted_at', sa.DateTime)) | ||
|
||
create_primary_key('DEL_DID_META_PK', 'deleted_did_meta', ['scope', 'name']) | ||
create_index('DEL_DID_META_DID_TYPE_IDX', 'deleted_did_meta', ['did_type']) | ||
|
||
|
||
def downgrade(): | ||
''' | ||
Downgrade the database to the previous revision | ||
''' | ||
|
||
if context.get_context().dialect.name in ['oracle', 'mysql', 'postgresql']: | ||
drop_table('deleted_did_meta') |
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