2017-04-21 66 views

回答

1

作爲一種解決方法,我使用以下SQL刪除問題(例如問題#19)和SQLite上的所有相關數據。 (Gogs版本:0.11.4.0405)

-- Delete issue-user records releated with issue #19 
DELETE FROM issue_user WHERE issue_id IN (SELECT id FROM issue WHERE [index] = 19); 

-- Decrease number of issues value of repository on which issue #19 has been created 
UPDATE repository SET num_issues = num_issues - 1 WHERE id IN (SELECT repo_id FROM issue WHERE [index] = 19); 

-- Delete action records added while issue #19 has been created 
-- op_type 6 is ACTION_CREATE_ISSUE: https://github.com/gogits/gogs/blob/master/models/action.go 
DELETE FROM action WHERE (op_type = 6) AND (repo_id IN (SELECT repo_id FROM issue WHERE [index] = 19)) AND (content LIKE '19|%'); 

-- At last, delete issue #19 
DELETE FROM issue WHERE [index] = 19;