Stamped upgrade script for username limit settings
authorBill Erickson <berick@esilibrary.com>
Tue, 4 Oct 2011 17:00:59 +0000 (13:00 -0400)
committerBill Erickson <berick@esilibrary.com>
Tue, 4 Oct 2011 17:00:59 +0000 (13:00 -0400)
Signed-off-by: Bill Erickson <berick@esilibrary.com>
Open-ILS/src/sql/Pg/002.schema.config.sql
Open-ILS/src/sql/Pg/upgrade/0632.data.username-limit-settings.sql [new file with mode: 0644]
Open-ILS/src/sql/Pg/upgrade/XXXX.temp.sql [deleted file]

index fe76dfd..9004611 100644 (file)
@@ -86,7 +86,7 @@ CREATE TRIGGER no_overlapping_deps
     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,
diff --git a/Open-ILS/src/sql/Pg/upgrade/0632.data.username-limit-settings.sql b/Open-ILS/src/sql/Pg/upgrade/0632.data.username-limit-settings.sql
new file mode 100644 (file)
index 0000000..62f70d8
--- /dev/null
@@ -0,0 +1,33 @@
+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;
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.temp.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.temp.sql
deleted file mode 100644 (file)
index 3e64e0b..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-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')
-;