awips2/deltaScripts/archived/11.9.0-2/db/airmet_convsigmet_add_indices.sql
Richard Peter 55708f1d55 Issue #2854: Reorganize deltaScripts
Former-commit-id: 09f41a6b31 [formerly 56745c942e] [formerly 09f41a6b31 [formerly 56745c942e] [formerly c8e373c098 [formerly 469c2c597b80fd725f474e0d645656e4054fd69a]]]
Former-commit-id: c8e373c098
Former-commit-id: a526600e3e [formerly e1721cad00]
Former-commit-id: 18b4d133c7
2014-04-30 13:03:44 -05:00

35 lines
739 B
SQL

-- Index: convsigmet_section_parentid_idex
-- DROP INDEX convsigmet_section_parentid_idex;
CREATE INDEX convsigmet_section_parentid_idex
ON convsigmet_section
USING btree
(parentid);
-- Index: convsigmet_location_parentid_idex
-- DROP INDEX convsigmet_location_parentid_idex;
CREATE INDEX convsigmet_location_parentid_idex
ON convsigmet_location
USING btree
(parentid);
-- Index: airmet_report_parentid_idex
-- DROP INDEX airmet_report_parentid_idex;
CREATE INDEX airmet_report_parentid_idex
ON airmet_report
USING btree
(parentid);
-- Index: airmet_location_parentid_idex
-- DROP INDEX airmet_location_parentid_idex;
CREATE INDEX airmet_location_parentid_idex
ON airmet_location
USING btree
(parentid);