Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8469dbc

Browse files
authored
fix: add index to provisioner_jobs.started_at (coder#5245)
1 parent 92c217b commit 8469dbc

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

coderd/database/dump.sql

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP INDEX provisioner_jobs_started_at_idx;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CREATE INDEX provisioner_jobs_started_at_idx ON provisioner_jobs USING btree (started_at)
2+
WHERE started_at IS NULL;

0 commit comments

Comments
 (0)