Skip to content

Commit

Permalink
Adding an index on org_id, correlation_id and status on runs
Browse files Browse the repository at this point in the history
  • Loading branch information
dehort committed Feb 21, 2024
1 parent 8311244 commit e071546
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions migrations/016_add-index-labels-playbook-run.down.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DROP INDEX runs_org_id_correlation_id_status_index;
1 change: 1 addition & 0 deletions migrations/016_add-index-labels-playbook-run.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX runs_org_id_correlation_id_status_index ON runs (org_id, correlation_id, status);

0 comments on commit e071546

Please sign in to comment.