Skip to content
Snippets Groups Projects
Commit fc7e7b27 authored by Nathan Bockisch's avatar Nathan Bockisch
Browse files

Fixed downgrade section of pims_split alembic file

parent 93cf39bc
No related branches found
No related tags found
1 merge request!1079Fixed slash problem in pims_split alembic file
Pipeline #6826 passed
......@@ -216,11 +216,11 @@ def upgrade():
def downgrade():
op.execute(
"""
DELETE FROM workflows WHERE workflow_name = 'pims_split'
DELETE FROM workflow_templates WHERE workflow_name = 'pims_split'
"""
)
op.execute(
"""
DELETE FROM workflow_templates WHERE workflow_name = 'pims_split'
DELETE FROM workflows WHERE workflow_name = 'pims_split'
"""
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment