From 22933dac4ae2e1943a403ad2fd6e64de20d44d53 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 3 Mar 2024 12:47:00 +0100 Subject: [PATCH] fix(project): typo in table name --- pkg/models/project.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/models/project.go b/pkg/models/project.go index 376c310c3..8a74130c3 100644 --- a/pkg/models/project.go +++ b/pkg/models/project.go @@ -681,7 +681,7 @@ func checkProjectBeforeUpdateOrDelete(s *xorm.Session, project *Project) (err er p.id, p.parent_project_id FROM - Projects p + projects p INNER JOIN all_projects pc ON p.ID = pc.parent_project_id ) SELECT