]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0056.data.org-setting-in-house-use.sql
LP1893463: Follow-up to address de-duplication and adding release notes.
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0056.data.org-setting-in-house-use.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0056'); -- phasefx
4
5 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
6     VALUES (
7         'ui.circ.in_house_use.entry_cap',
8         'GUI: Record In-House Use: Maximum # of uses allowed per entry.',
9         'The # of uses entry in the Record In-House Use interface may not exceed the value of this setting.',
10         'integer'
11     );
12
13 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype )
14     VALUES (
15         'ui.circ.in_house_use.entry_warn',
16         'GUI: Record In-House Use: # of uses threshold for Are You Sure? dialog.',
17         'In the Record In-House Use interface, a submission attempt will warn if the # of uses field exceeds the value of this setting.',
18         'integer'
19     );
20
21 COMMIT;