Skip to content

Commit 0abd599

Browse files
macdiceCommitfest Bot
authored andcommitted
Make status history table columns NOT NULL.
1 parent ad5112c commit 0abd599

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

create.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ CREATE TABLE public.build_status_history (
133133
build_id text NOT NULL,
134134
status text NOT NULL,
135135
received timestamp with time zone NOT NULL,
136-
source text
136+
source text NOT NULL
137137
);
138138

139139

@@ -233,8 +233,8 @@ CREATE TABLE public.task_status_history (
233233
task_id text NOT NULL,
234234
status text NOT NULL,
235235
received timestamp with time zone NOT NULL,
236-
source text,
237-
"timestamp" timestamp with time zone
236+
source text NOT NULL,
237+
"timestamp" timestamp with time zone NOT NULL
238238
);
239239

240240

0 commit comments

Comments
 (0)