Skip to content

Commit

Permalink
Fix filename for V18 migration
Browse files Browse the repository at this point in the history
File was missing the .sql extension.
  • Loading branch information
DiegoTavares committed Jun 20, 2024
1 parent f5f0110 commit c6bac54
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 30 deletions.
2 changes: 1 addition & 1 deletion VERSION.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.28
0.29

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
--Performance issue, Created new index on column int_gpus_min and int_gpus_mem_min

CREATE INDEX IF NOT EXISTS i_layer_int_gpus_min
ON layer USING btree
(int_gpus_min ASC NULLS LAST);


CREATE INDEX IF NOT EXISTS i_layer_int_gpus_mem_min_1
ON layer USING btree
(int_gpu_mem_min ASC NULLS LAST);

CREATE INDEX IF NOT EXISTS i_layer_int_cores_max ON layer(int_cores_max);

CREATE INDEX IF NOT EXISTS i_job_resource_int_priority ON job_resource(int_priority);

CREATE INDEX IF NOT EXISTS i_job_int_min_cores ON job(int_min_cores);

CREATE INDEX IF NOT EXISTS i_layer_limit_pk_layer ON layer_limit(pk_layer);

CREATE INDEX IF NOT EXISTS i_folder_resource_int_cores ON folder_resource(int_cores);

CREATE INDEX IF NOT EXISTS i_job_ts_updated ON job(ts_updated);

CREATE INDEX IF NOT EXISTS i_layer_str_tags ON layer(str_tags);

0 comments on commit c6bac54

Please sign in to comment.