BEFORE INSERT OR UPDATE ON config.db_patch_dependencies
FOR EACH ROW EXECUTE PROCEDURE evergreen.array_overlap_check ('deprecates');
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1250', :eg_version); -- miker/gmcharlt
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1251', :eg_version); -- khuckins/Dyrcona/gmcharlt
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
--- /dev/null
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('1251', :eg_version);
+
+INSERT INTO config.org_unit_setting_type
+ (grp, name, datatype, label, description)
+VALUES (
+ 'circ',
+ 'circ.renew.expired_patron_allow', 'bool',
+ oils_i18n_gettext(
+ 'circ.renew.expired_patron_allow',
+ 'Allow renewal request if renewal recipient privileges have expired',
+ 'coust',
+ 'label'
+ ),
+ oils_i18n_gettext(
+ 'circ.renew.expired_patron_allow',
+ 'If enabled, users within the org unit who are expired may still renew items.',
+ 'coust',
+ 'description'
+ )
+);
+
+COMMIT;
+++ /dev/null
-BEGIN;
-
-SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
-
-INSERT INTO config.org_unit_setting_type
- (grp, name, datatype, label, description)
-VALUES (
- 'circ',
- 'circ.renew.expired_patron_allow', 'bool',
- oils_i18n_gettext(
- 'circ.renew.expired_patron_allow',
- 'Allow renewal request if renewal recipient privileges have expired',
- 'coust',
- 'label'
- ),
- oils_i18n_gettext(
- 'circ.renew.expired_patron_allow',
- 'If enabled, users within the org unit who are expired may still renew items.',
- 'coust',
- 'description'
- )
-);
-
-COMMIT;