This is an automated email from the ASF dual-hosted git repository.
ka94 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new 2a46932f1 fix: connection id should be uint64 (#5705)
2a46932f1 is described below
commit 2a46932f139133c3242eb05c253ebf88697546de
Author: Klesh Wong <[email protected]>
AuthorDate: Thu Jul 20 14:31:24 2023 +0800
fix: connection id should be uint64 (#5705)
---
backend/server/services/remote/models/models.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/backend/server/services/remote/models/models.go
b/backend/server/services/remote/models/models.go
index 99e94fdaf..c7ebdb498 100644
--- a/backend/server/services/remote/models/models.go
+++ b/backend/server/services/remote/models/models.go
@@ -140,7 +140,7 @@ type PipelineData struct {
type ToolModel struct {
common.NoPKModel
- ConnectionId string `json:"connectionId" gorm:"column:connection_id;not
null"`
+ ConnectionId uint64 `json:"connectionId" gorm:"column:connection_id;not
null"`
}
var _ plugin.ToolLayerScope = (*DynamicScopeModel)(nil)