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 ('0631', :eg_version); -- tsbere/dbwells
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0632', :eg_version); -- tsbere/berick
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
--- /dev/null
+BEGIN;
+
+-- check whether patch can be applied
+SELECT evergreen.upgrade_deps_block_check('0632', :eg_version);
+
+INSERT INTO config.org_unit_setting_type (name, grp, label, description, datatype) VALUES
+( 'opac.username_regex', 'glob',
+ oils_i18n_gettext('opac.username_regex',
+ 'Patron username format',
+ 'coust', 'label'),
+ oils_i18n_gettext('opac.username_regex',
+ 'Regular expression defining the patron username format, used for patron registration and self-service username changing only',
+ 'coust', 'description'),
+ 'string')
+,( 'opac.lock_usernames', 'glob',
+ oils_i18n_gettext('opac.lock_usernames',
+ 'Lock Usernames',
+ 'coust', 'label'),
+ oils_i18n_gettext('opac.lock_usernames',
+ 'If enabled username changing via the OPAC will be disabled',
+ 'coust', 'description'),
+ 'bool')
+,( 'opac.unlimit_usernames', 'glob',
+ oils_i18n_gettext('opac.unlimit_usernames',
+ 'Allow multiple username changes',
+ 'coust', 'label'),
+ oils_i18n_gettext('opac.unlimit_usernames',
+ 'If enabled (and Lock Usernames is not set) patrons will be allowed to change their username when it does not look like a barcode. Otherwise username changing in the OPAC will only be allowed when the patron''s username looks like a barcode.',
+ 'coust', 'description'),
+ 'bool')
+;
+
+COMMIT;
+++ /dev/null
-INSERT INTO config.org_unit_setting_type (name, grp, label, description, datatype) VALUES
-( 'opac.username_regex', 'glob',
- oils_i18n_gettext('opac.username_regex',
- 'Patron username format',
- 'coust', 'label'),
- oils_i18n_gettext('opac.username_regex',
- 'Regular expression defining the patron username format, used for patron registration and self-service username changing only',
- 'coust', 'description'),
- 'string')
-,( 'opac.lock_usernames', 'glob',
- oils_i18n_gettext('opac.lock_usernames',
- 'Lock Usernames',
- 'coust', 'label'),
- oils_i18n_gettext('opac.lock_usernames',
- 'If enabled username changing via the OPAC will be disabled',
- 'coust', 'description'),
- 'bool')
-,( 'opac.unlimit_usernames', 'glob',
- oils_i18n_gettext('opac.unlimit_usernames',
- 'Allow multiple username changes',
- 'coust', 'label'),
- oils_i18n_gettext('opac.unlimit_usernames',
- 'If enabled (and Lock Usernames is not set) patrons will be allowed to change their username when it does not look like a barcode. Otherwise username changing in the OPAC will only be allowed when the patron''s username looks like a barcode.',
- 'coust', 'description'),
- 'bool')
-;