From: Mike Rylander Date: Wed, 12 Oct 2011 14:58:47 +0000 (-0400) Subject: copy-paste-o from the seed data X-Git-Tag: sprint4-merge-nov22~4936 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d667a4942857c8cf4a0c82069eabba44a8c49425;p=working%2FEvergreen.git copy-paste-o from the seed data Signed-off-by: Mike Rylander --- 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 97757e5a86..5bc40c809c 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;