]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0007.data.org-setting-checkout-auto-renew-age.sql
LP#1551447 Selfcheck: Printing Fines Prints All Open Transactions
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0007.data.org-setting-checkout-auto-renew-age.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0007');
4
5 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
6     'circ.checkout_auto_renew_age',
7     'Checkout auto renew age',
8     'When an item has been checked out for at least this amount of time, an attempt to check out the item to the patron that it is already checked out to will simply renew the circulation',
9     'interval'
10 );
11
12 COMMIT;
13