]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0425.schema.perm-grp-tree-hold-priority.sql
LP#1744385: Additions and edits to release note entry
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0425.schema.perm-grp-tree-hold-priority.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0425'); -- Scott McKellar
4
5 ALTER TABLE permission.grp_tree
6         ADD COLUMN hold_priority INT NOT NULL DEFAULT 0;
7
8 COMMIT;