From d4751e023dd75c0aa4e945a4866aff8393cb81f8 Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Tue, 27 Mar 2012 15:07:14 -0400 Subject: [PATCH] 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 --- Open-ILS/src/sql/Pg/950.data.seed-values.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', $$
-- 2.11.0