This is an automated email from the ASF dual-hosted git repository.
abeizn 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 a75fe5e50 fix: issue_assignees was missing (#5537)
a75fe5e50 is described below
commit a75fe5e50a9828e687dacf8874a3746e64e0790c
Author: Liang Zhang <[email protected]>
AuthorDate: Tue Jun 20 22:59:10 2023 +0800
fix: issue_assignees was missing (#5537)
---
backend/core/models/domainlayer/domaininfo/domaininfo.go | 1 +
1 file changed, 1 insertion(+)
diff --git a/backend/core/models/domainlayer/domaininfo/domaininfo.go
b/backend/core/models/domainlayer/domaininfo/domaininfo.go
index 6b8e1bf54..6ba13c8dc 100644
--- a/backend/core/models/domainlayer/domaininfo/domaininfo.go
+++ b/backend/core/models/domainlayer/domaininfo/domaininfo.go
@@ -74,5 +74,6 @@ func GetDomainTablesInfo() []Tabler {
&ticket.IssueWorklog{},
&ticket.Sprint{},
&ticket.SprintIssue{},
+ &ticket.IssueAssignee{},
}
}