forked from reanahub/reana-db
-
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(models): add missing foreign key to workflow_uuid of Job (reanahu…
…b#214) Closes reanahub#210
- Loading branch information
Showing
2 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
64
reana_db/alembic/versions/20240531_0959_86435bb00714_foreign_key_for_workflow_uuid_of_job.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,64 @@ | ||
"""Foreign key for workflow_uuid of Job. | ||
Revision ID: 86435bb00714 | ||
Revises: eb5309f3d8ee | ||
Create Date: 2024-05-31 09:59:18.951074 | ||
""" | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
from sqlalchemy.dialects import postgresql | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = "86435bb00714" | ||
down_revision = "eb5309f3d8ee" | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
"""Upgrade to 86435bb00714.""" | ||
job_table = sa.sql.table("job", sa.sql.column("workflow_uuid"), schema="__reana") | ||
workflow_table = sa.sql.table("workflow", sa.sql.column("id_"), schema="__reana") | ||
|
||
# 1. delete jobs which refer to non-existing workflows | ||
op.execute( | ||
job_table.delete().where( | ||
job_table.c.workflow_uuid.notin_(sa.select([workflow_table.c.id_])) | ||
) | ||
) | ||
|
||
# 2. alter column to make it non-nullable | ||
op.alter_column( | ||
"job", | ||
"workflow_uuid", | ||
existing_type=postgresql.UUID(), | ||
nullable=False, | ||
schema="__reana", | ||
) | ||
|
||
# 3. create foreign key constraint | ||
op.create_foreign_key( | ||
"fk_job_workflow_uuid_workflow", | ||
"job", | ||
"workflow", | ||
["workflow_uuid"], | ||
["id_"], | ||
source_schema="__reana", | ||
referent_schema="__reana", | ||
) | ||
|
||
|
||
def downgrade(): | ||
"""Downgrade to eb5309f3d8ee.""" | ||
op.drop_constraint( | ||
"fk_job_workflow_uuid_workflow", "job", schema="__reana", type_="foreignkey" | ||
) | ||
op.alter_column( | ||
"job", | ||
"workflow_uuid", | ||
existing_type=postgresql.UUID(), | ||
nullable=True, | ||
schema="__reana", | ||
) |
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