How to delete a comment from Bugzilla
- Connect to the Bugzilla Database
'mysql -u bugs -pxxxxxxxx bugs'
- Lists the comments attached to your bug
'select * from longdescs where bug_id = 338;'
- Delete the comment you want to delete using its identifier
'delete from longdescs where comment_id = 519;'
--
Marcos Woehrmann - 2014-05-06
Comments