aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author65432020-04-19 04:39:48 +0200
committerGitHub2020-04-19 10:39:48 +0800
commit245d6ebda5ab89eb84d99c803c6d50f67cc6147e (patch)
tree0b66c695a806bd8500b63ca46326374274ccd012
parentd9875ff2e1af91a1d73cd99ee5869aedf7fa0703 (diff)
On Repo Deletion: Delete related TrackedTimes too (#11110) (#11125)
-rw-r--r--models/repo.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/models/repo.go b/models/repo.go
index 7e2cfd947..b5a9395ed 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -1968,6 +1968,11 @@ func DeleteRepository(doer *User, uid, repoID int64) error {
return err
}
+ if _, err = sess.In("issue_id", deleteCond).
+ Delete(&TrackedTime{}); err != nil {
+ return err
+ }
+
attachments = attachments[:0]
if err = sess.Join("INNER", "issue", "issue.id = attachment.issue_id").
Where("issue.repo_id = ?", repoID).