From 430c8474fe10a559b6fbd39515c0cb6c5168b7e4 Mon Sep 17 00:00:00 2001 From: Ben Shum Date: Thu, 31 Jan 2013 18:15:28 -0500 Subject: [PATCH 1/1] 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 Signed-off-by: Mike Rylander --- Open-ILS/src/sql/Pg/950.data.seed-values.sql | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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 4381559535..95f0f5c925 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -2512,7 +2512,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')) ; @@ -4721,6 +4722,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) ; -- 2.43.2