fix: add index for workspace_resource.job_id column (#5009)

This commit is contained in:
Colin Adler
2022-11-10 14:09:44 -06:00
committed by GitHub
parent 5e2253030f
commit f3eb662208
3 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1 @@
DROP INDEX workspace_resources_job_id_idx;

View File

@ -0,0 +1 @@
CREATE INDEX CONCURRENTLY workspace_resources_job_id_idx ON workspace_resources USING btree (job_id);