From: Dan Scott Date: Tue, 27 Mar 2012 19:07:14 +0000 (-0400) Subject: Fix NULL interval for action_trigger.event_definition.delay X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d4751e023dd75c0aa4e945a4866aff8393cb81f8;p=evergreen%2Fjoelewis.git Fix NULL interval for action_trigger.event_definition.delay The delay column in action_trigger.event_definition is defined as NOT NULL, therefore we should not try to push a NULL into it as that makes PostgreSQL unhappy. 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 4d24da1eff..953c02e61d 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -8568,7 +8568,7 @@ $$ 'DeleteTempBiblioBucket', 'owner', 'print-on-demand', - NULL, + '00:00:00', $$