Sign in
go
/
build
/
a4d4fa3ccd48a4504e5f1be9c21b6997fea2592d
/
.
/
internal
/
relui
/
migrations
/
20220715183205_add_retry_count.up.sql
blob: 97ee41fd8e666d12d893f9084f1c817e82d47b65 [
file
] [
log
] [
blame
]
-- Copyright 2022 The Go Authors. All rights reserved.
-- Use of this source code is governed by a BSD-style
-- license that can be found in the LICENSE file.
ALTER
TABLE
tasks
ADD
COLUMN
retry_count integer
NOT
NULL
DEFAULT
0
;