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 ('1060', :eg_version); -- Bmagic/csharp/phasefx
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1061', :eg_version); -- berick/kmlussier/cesardv/phasefx
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
--- /dev/null
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('1061', :eg_version);
+
+INSERT INTO config.org_unit_setting_type
+ (name, label, description, grp, datatype)
+VALUES (
+ 'ui.staff.max_recent_patrons',
+ oils_i18n_gettext(
+ 'ui.staff.max_recent_patrons',
+ 'Number of Retrievable Recent Patrons',
+ 'coust',
+ 'label'
+ ),
+ oils_i18n_gettext(
+ 'ui.staff.max_recent_patrons',
+ 'Number of most recently accessed patrons that can be re-retrieved ' ||
+ 'in the staff client. A value of 0 or less disables the feature. Defaults to 1.',
+ 'coust',
+ 'description'
+ ),
+ 'circ',
+ 'integer'
+);
+
+COMMIT;
+++ /dev/null
-BEGIN;
-
--- SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
-
-INSERT INTO config.org_unit_setting_type
- (name, label, description, grp, datatype)
-VALUES (
- 'ui.staff.max_recent_patrons',
- oils_i18n_gettext(
- 'ui.staff.max_recent_patrons',
- 'Number of Retrievable Recent Patrons',
- 'coust',
- 'label'
- ),
- oils_i18n_gettext(
- 'ui.staff.max_recent_patrons',
- 'Number of most recently accessed patrons that can be re-retrieved ' ||
- 'in the staff client. A value of 0 or less disables the feature. Defaults to 1.',
- 'coust',
- 'description'
- ),
- 'circ',
- 'integer'
-);
-
-COMMIT;