Skip to content
Snippets Groups Projects
Commit 9c8e12b6 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

Task #10339: added indices on resource_claim table

parent 58b3a8a4
No related branches found
No related tags found
No related merge requests found
...@@ -230,6 +230,15 @@ CREATE INDEX resource_claim_starttime_endtime_idx ...@@ -230,6 +230,15 @@ CREATE INDEX resource_claim_starttime_endtime_idx
USING btree USING btree
(starttime DESC, endtime); (starttime DESC, endtime);
CREATE INDEX resource_claim_task_id_idx
ON resource_allocation.resource_claim (task_id);
CREATE INDEX resource_claim_resource_id_idx
ON resource_allocation.resource_claim (resource_id);
CREATE INDEX resource_claim_status_id_idx
ON resource_allocation.resource_claim (status_id);
CREATE TABLE resource_allocation.conflict_reason ( CREATE TABLE resource_allocation.conflict_reason (
id serial NOT NULL, id serial NOT NULL,
reason text NOT NULL, reason text NOT NULL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment