]> git.evergreen-ils.org Git - contrib/Conifer.git/blob - Open-ILS/src/sql/Pg/upgrade/XXXX.action_usr_circ_history_index.sql
LP#1615736 - Add an index on the usr field of action.usr_circ_history.
[contrib/Conifer.git] / Open-ILS / src / sql / Pg / upgrade / XXXX.action_usr_circ_history_index.sql
1 BEGIN;
2
3 -- SELECT evergreen.upgrade_deps_block_check('xxxx', :eg_version);
4
5 CREATE INDEX action_usr_circ_history_usr_idx ON action.usr_circ_history ( usr );
6
7 COMMIT;