@@ -194,7 +194,7 @@ CREATE TABLE execution_node_results (
194194 created_at timestamp with time zone NOT NULL ,
195195 updated_at timestamp with time zone NOT NULL ,
196196 function_definition_id bigint ,
197- CONSTRAINT check_26548a5903 CHECK ((num_nonnulls(success, error) = 1 ))
197+ CONSTRAINT check_26548a5903 CHECK ((num_nonnulls(success, error) < = 1 ))
198198);
199199
200200CREATE SEQUENCE execution_node_results_id_seq
@@ -210,7 +210,7 @@ CREATE TABLE execution_parameter_results (
210210 id bigint NOT NULL ,
211211 execution_node_result_id bigint NOT NULL ,
212212 " position" integer NOT NULL ,
213- value jsonb NOT NULL ,
213+ value jsonb,
214214 created_at timestamp with time zone NOT NULL ,
215215 updated_at timestamp with time zone NOT NULL
216216);
@@ -236,7 +236,7 @@ CREATE TABLE execution_results (
236236 created_at timestamp with time zone NOT NULL ,
237237 updated_at timestamp with time zone NOT NULL ,
238238 CONSTRAINT check_1e7a71dfb7 CHECK ((char_length(execution_identifier) <= 200 )),
239- CONSTRAINT check_5bf29caaec CHECK ((num_nonnulls(success, error) = 1 ))
239+ CONSTRAINT check_5bf29caaec CHECK ((num_nonnulls(success, error) < = 1 ))
240240);
241241
242242CREATE SEQUENCE execution_results_id_seq
0 commit comments