Skip to content

Commit

Permalink
fix(database): increase build character count in deploy table (#1055)
Browse files Browse the repository at this point in the history
  • Loading branch information
ecrupper authored Feb 6, 2024
1 parent 546ebbd commit 16ead3a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion database/deployment/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ deployments (
payload VARCHAR(2500),
created_at INTEGER,
created_by VARCHAR(250),
builds VARCHAR(50),
builds VARCHAR(500),
UNIQUE(repo_id, number)
);
`
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ require (
github.com/drone/envsubst v1.0.3
github.com/gin-gonic/gin v1.9.1
github.com/go-playground/assert/v2 v2.2.0
github.com/go-vela/types v0.23.0-rc2
github.com/go-vela/types v0.23.0-rc2.0.20240206142409-825949399893
github.com/golang-jwt/jwt/v5 v5.2.0
github.com/google/go-cmp v0.6.0
github.com/google/go-github/v58 v58.0.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ github.com/go-playground/validator/v10 v10.14.0 h1:vgvQWe3XCz3gIeFDm/HnTIbj6UGmg
github.com/go-playground/validator/v10 v10.14.0/go.mod h1:9iXMNT7sEkjXb0I+enO7QXmzG6QCsPWY4zveKFVRSyU=
github.com/go-test/deep v1.0.2 h1:onZX1rnHT3Wv6cqNgYyFOOlgVKJrksuCMCRvJStbMYw=
github.com/go-test/deep v1.0.2/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA=
github.com/go-vela/types v0.23.0-rc2 h1:yLWrdjS2212WBSqR5owhS3iNW5FHT9kG41slXPqJ3uM=
github.com/go-vela/types v0.23.0-rc2/go.mod h1:AAqgxIw1aRBgPkE/5juGuiwh/JZuOtL8fcPaEkjFWwQ=
github.com/go-vela/types v0.23.0-rc2.0.20240206142409-825949399893 h1:ijXBBv9sXEuAiHhmEK9T/5HK3FOkir4wwBgLCByDLUM=
github.com/go-vela/types v0.23.0-rc2.0.20240206142409-825949399893/go.mod h1:AAqgxIw1aRBgPkE/5juGuiwh/JZuOtL8fcPaEkjFWwQ=
github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU=
github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I=
github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
Expand Down

0 comments on commit 16ead3a

Please sign in to comment.