]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0017.schema.circ-target-copy-indexes.sql
LP1894131 Sticky catalog holdings org select
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0017.schema.circ-target-copy-indexes.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0017');
4
5 CREATE INDEX action_circulation_target_copy_idx
6 ON action.circulation (target_copy);
7
8 CREATE INDEX action_aged_circulation_target_copy_idx
9 ON action.aged_circulation (target_copy);
10
11 COMMIT;