Skip to content

Commit

Permalink
Merge pull request #220 from mgcam/migration_sql_fix
Browse files Browse the repository at this point in the history
Fixed an error in the db migration script
  • Loading branch information
mgcam authored Apr 9, 2024
2 parents 7af0b49 + 5c4e79c commit dc3f8fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion alembic/versions/2.1.0_extend_qc_state_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@


def upgrade() -> None:
op.execute("INSERT INTO qc_state_dict VALUES ('On hold external', NULL)")
op.execute(
"INSERT INTO qc_state_dict (state, outcome) VALUES ('On hold external', NULL)"
)


def downgrade() -> None:
Expand Down

0 comments on commit dc3f8fc

Please sign in to comment.