Skip to content

Commit

Permalink
Fixed generated jobs not having run_at column
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Sep 4, 2021
1 parent 383de70 commit d159ff4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion IHP/IDE/CodeGen/JobGenerator.hs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ buildPlan' config =
<> " last_error TEXT DEFAULT NULL,\n"
<> " attempts_count INT DEFAULT 0 NOT NULL,\n"
<> " locked_at TIMESTAMP WITH TIME ZONE DEFAULT NULL,\n"
<> " locked_by UUID DEFAULT NULL\n"
<> " locked_by UUID DEFAULT NULL,\n"
<> " run_at TIMESTAMP WITH TIME ZONE DEFAULT NOW() NOT NULL\n"
<> ");\n"


Expand Down

0 comments on commit d159ff4

Please sign in to comment.