]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0005.data.org-setting-max-claims-return-count.sql
LP#1638299: Stamping upgrade scripts for authority infrastructure work
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0005.data.org-setting-max-claims-return-count.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0005');
4
5 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
6     'circ.max_patron_claim_return_count',
7     'Max Patron Claims Returned Count',
8     'When this count is exceeded, a staff override is required to mark the item as claims returned',
9     'integer'
10 );
11
12 COMMIT;
13