Skip to content

Commit

Permalink
fix: cr
Browse files Browse the repository at this point in the history
  • Loading branch information
fsamin committed Aug 19, 2020
1 parent 62b3e9a commit 4001154
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ ALTER TABLE "workflow_run" ALTER COLUMN to_craft SET DEFAULT false;

ALTER TABLE "workflow_run" ADD COLUMN to_craft_opts JSONB;

UPDATE workflow_run SET to_craft = false WHERE to_craft is null;
SELECT create_index('workflow_run', 'IDX_WORKFLOW_RUN_TO_CRAFT', 'id,to_craft');

-- +migrate Down
Expand Down
2 changes: 1 addition & 1 deletion sdk/error.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ var (
ErrUnsupportedMediaType = Error{ID: 188, Status: http.StatusUnsupportedMediaType}
ErrNothingToPush = Error{ID: 189, Status: http.StatusBadRequest}
ErrWorkerErrorCommand = Error{ID: 190, Status: http.StatusBadRequest}
ErrRepoAnalyzeFailed = Error{ID: 192, Status: http.StatusInternalServerError}
ErrRepoAnalyzeFailed = Error{ID: 191, Status: http.StatusInternalServerError}
)

var errorsAmericanEnglish = map[int]string{
Expand Down

0 comments on commit 4001154

Please sign in to comment.