Add default Vandelay match set to schema
authorBen Shum <bshum@biblio.org>
Thu, 31 Jan 2013 23:15:28 +0000 (18:15 -0500)
committerMike Rylander <mrylander@gmail.com>
Wed, 27 Feb 2013 15:40:29 +0000 (10:40 -0500)
Only had the upgrade SQL, need to actually make the change to the stock schema too.

Signed-off-by: Ben Shum <bshum@biblio.org>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
Open-ILS/src/sql/Pg/950.data.seed-values.sql

index 4381559..95f0f5c 100644 (file)
@@ -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)
 
 ;