]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0017.schema.circ-target-copy-indexes.sql
LP#1744385: Additions and edits to release note entry
[working/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;