Skip to content

Commit

Permalink
fix: add index for workspace_resource.job_id column (#5009)
Browse files Browse the repository at this point in the history
  • Loading branch information
coadler committed Nov 10, 2022
1 parent 5e22530 commit f3eb662
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions coderd/database/dump.sql

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DROP INDEX workspace_resources_job_id_idx;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX CONCURRENTLY workspace_resources_job_id_idx ON workspace_resources USING btree (job_id);

0 comments on commit f3eb662

Please sign in to comment.