From: Ben Shum Date: Thu, 31 Jan 2013 23:15:28 +0000 (-0500) Subject: Add default Vandelay match set to schema X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Fbshum%2Fvandelay-default-match-set2;p=working%2FEvergreen.git Add default Vandelay match set to schema Only had the upgrade SQL, need to actually make the change to the stock schema too. Signed-off-by: Ben Shum --- diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index 88051810eb..8a79adea63 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -2501,7 +2501,8 @@ INSERT INTO config.settings_group (name, label) VALUES ('booking', oils_i18n_gettext('config.settings_group.booking', 'Booking', 'coust', 'label')), ('offline', oils_i18n_gettext('config.settings_group.offline', 'Offline', 'coust', 'label')), ('receipt_template', oils_i18n_gettext('config.settings_group.receipt_template', 'Receipt Template', 'coust', 'label')), -('sms', oils_i18n_gettext('sms','SMS Text Messages','csg','label')) +('sms', oils_i18n_gettext('sms','SMS Text Messages','csg','label')), +('vandelay', oils_i18n_gettext('vandelay','Vandelay','coust','label')) ; @@ -4710,6 +4711,20 @@ INSERT into config.org_unit_setting_type 'description' ), 'string', null) +,( 'vandelay.default_match_set', 'vandelay', + oils_i18n_gettext( + 'vandelay.default_match_set', + 'Vandelay: Default Record Match Set', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'vandelay.default_match_set', + 'Vandelay: Default Record Match Set', + 'coust', + 'description' + ), + 'string', null) ;