From: Dan Scott Date: Tue, 27 Mar 2012 18:40:49 +0000 (-0400) Subject: Fix seed data script syntax errors X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=762167349a83a951b124e0544132a1a1b4ba1ad4;p=evergreen%2Fmasslnc.git Fix seed data script syntax errors Commas were missing at the end of some lines. Fix that so that the database can be created relatively cleanly again. Signed-off-by: Dan Scott Signed-off-by: Thomas Berezansky --- 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 d8037f3ac4..4d24da1eff 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -4417,7 +4417,7 @@ INSERT into config.org_unit_setting_type 'Require prefix field on patron registration', 'coust', 'label'), oils_i18n_gettext('ui.patron.edit.au.prefix.require', - 'The prefix field will be required on the patron registration screen.' + 'The prefix field will be required on the patron registration screen.', 'coust', 'description'), 'bool', null) @@ -4426,7 +4426,7 @@ INSERT into config.org_unit_setting_type 'Show prefix field on patron registration', 'coust', 'label'), oils_i18n_gettext('ui.patron.edit.au.prefix.show', - 'The prefix field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.' + 'The prefix field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'), 'bool', null) @@ -4435,7 +4435,7 @@ INSERT into config.org_unit_setting_type 'Suggest prefix field on patron registration', 'coust', 'label'), oils_i18n_gettext('ui.patron.edit.au.prefix.suggest', - 'The prefix field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.' + 'The prefix field will be shown on the patron registration screen. Showing a field makes it appear with required fields even when not required. If the field is required this setting is ignored.', 'coust', 'description'), 'bool', null)