Skip to content
Snippets Groups Projects

Fixed slash problem in pims_split alembic file

Merged Nathan Bockisch requested to merge pims-split-alembic-fix into main
1 unresolved thread
2 files
+ 11
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -211,8 +211,16 @@ def upgrade():
VALUES ('write_finished_file.sh', E'{write_finished_file_sh}', 'pims_split')
"""
)
pass
def downgrade():
pass
op.execute(
"""
DELETE FROM workflows WHERE workflow_name = 'pims_split'
"""
)
op.execute(
"""
DELETE FROM workflow_templates WHERE workflow_name = 'pims_split'
"""
)
Loading