Skip to content

Commit

Permalink
task queue worker: bugfix missing column in sql
Browse files Browse the repository at this point in the history
  • Loading branch information
agungdwiprasetyo committed Nov 19, 2022
1 parent 17ca255 commit 6dfb976
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion codebase/app/task_queue_worker/persistent_sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ func NewSQLPersistent(db *sql.DB) *SQLPersistent {
retrying INTEGER NOT NULL DEFAULT 0,
failure INTEGER NOT NULL DEFAULT 0,
stopped INTEGER NOT NULL DEFAULT 0,
is_loading BOOLEAN DEFAULT false
is_loading BOOLEAN DEFAULT false,
loading_message VARCHAR(255) NOT NULL DEFAULT ''
);`)
if err != nil {
panic(err)
Expand Down
2 changes: 1 addition & 1 deletion init.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package candi

const (
// Version of this library
Version = "v1.13.7"
Version = "v1.13.8"
)

0 comments on commit 6dfb976

Please sign in to comment.