copy-paste-o from the seed data
authorMike Rylander <mrylander@gmail.com>
Wed, 12 Oct 2011 14:58:47 +0000 (10:58 -0400)
committerMike Rylander <mrylander@gmail.com>
Wed, 12 Oct 2011 14:58:47 +0000 (10:58 -0400)
Signed-off-by: Mike Rylander <mrylander@gmail.com>

Open-ILS/src/sql/Pg/upgrade/0636.data.grace_period_extend.sql

index 97757e5..5bc40c8 100644 (file)
@@ -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;