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 ('1330', :eg_version); -- berick/gcollum/sandbergja
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1331', :eg_version); -- jdavis/gmonti/sandbergja
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
--- /dev/null
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('1331', :eg_version);
+
+INSERT into config.org_unit_setting_type
+ (name, datatype, grp, label, description)
+VALUES (
+ 'ui.staff.traditional_catalog.enabled', 'bool', 'gui',
+ oils_i18n_gettext(
+ 'ui.staff.traditional_catalog.enabled',
+ 'GUI: Enable Traditional Staff Catalog',
+ 'coust', 'label'
+ ),
+ oils_i18n_gettext(
+ 'ui.staff.traditional_catalog.enabled',
+ 'Display an entry point in the browser client for the ' ||
+ 'traditional staff catalog.',
+ 'coust', 'description'
+ )
+);
+
+COMMIT;
+
+
+++ /dev/null
-BEGIN;
-
-SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
-
-INSERT into config.org_unit_setting_type
- (name, datatype, grp, label, description)
-VALUES (
- 'ui.staff.traditional_catalog.enabled', 'bool', 'gui',
- oils_i18n_gettext(
- 'ui.staff.traditional_catalog.enabled',
- 'GUI: Enable Traditional Staff Catalog',
- 'coust', 'label'
- ),
- oils_i18n_gettext(
- 'ui.staff.traditional_catalog.enabled',
- 'Display an entry point in the browser client for the ' ||
- 'traditional staff catalog.',
- 'coust', 'description'
- )
-);
-
-COMMIT;
-
-