fix: add index on `workspace_agents.auth_token` (#5244)

This commit is contained in:
Colin Adler 2022-12-01 19:29:05 -06:00 committed by GitHub
parent 9e80322fe5
commit 92c217bd85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 0 deletions

View File

@ -641,6 +641,8 @@ CREATE UNIQUE INDEX users_email_lower_idx ON users USING btree (lower(email)) WH
CREATE UNIQUE INDEX users_username_lower_idx ON users USING btree (lower(username)) WHERE (deleted = false);
CREATE INDEX workspace_agents_auth_token_idx ON workspace_agents USING btree (auth_token);
CREATE INDEX workspace_agents_resource_id_idx ON workspace_agents USING btree (resource_id);
CREATE INDEX workspace_resources_job_id_idx ON workspace_resources USING btree (job_id);

View File

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

View File

@ -0,0 +1 @@
CREATE INDEX workspace_agents_auth_token_idx ON workspace_agents USING btree (auth_token);