From d667a4942857c8cf4a0c82069eabba44a8c49425 Mon Sep 17 00:00:00 2001 From: Mike Rylander Date: Wed, 12 Oct 2011 10:58:47 -0400 Subject: [PATCH] copy-paste-o from the seed data Signed-off-by: Mike Rylander --- .../Pg/upgrade/0636.data.grace_period_extend.sql | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Open-ILS/src/sql/Pg/upgrade/0636.data.grace_period_extend.sql b/Open-ILS/src/sql/Pg/upgrade/0636.data.grace_period_extend.sql index 97757e5..5bc40c8 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0636.data.grace_period_extend.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0636.data.grace_period_extend.sql @@ -28,7 +28,7 @@ INSERT INTO config.org_unit_setting_type(name, grp, label, description, datatype oils_i18n_gettext('circ.grace.extend', 'When enabled grace periods will auto-extend. By default this will be only when they are a full day or more and end on a closed date, though other options can alter this.', 'coust', 'description'), - 'bool', null) + 'bool') ,( 'circ.grace.extend.all', 'circ', oils_i18n_gettext('circ.grace.extend.all', @@ -37,7 +37,7 @@ INSERT INTO config.org_unit_setting_type(name, grp, label, description, datatype oils_i18n_gettext('circ.grace.extend.all', 'If enabled and Grace Periods auto-extending is turned on grace periods will extend past all closed dates they intersect, within hard-coded limits. This basically becomes "grace periods can only be consumed by closed dates".', 'coust', 'description'), - 'bool', null) + 'bool') ,( 'circ.grace.extend.into_closed', 'circ', oils_i18n_gettext('circ.grace.extend.into_closed', @@ -46,7 +46,7 @@ INSERT INTO config.org_unit_setting_type(name, grp, label, description, datatype oils_i18n_gettext('circ.grace.extend.into_closed', 'If enabled and Grace Periods auto-extending is turned on grace periods will include closed dates that directly follow the last day of the grace period, to allow a backdate into the closed dates to assume "returned after hours on the last day of the grace period, and thus still within it" automatically.', 'coust', 'description'), - 'bool', null); + 'bool'); COMMIT; -- 1.7.2.5