Difference between revisions of "Bugify:Home"

From RadonWiki
Jump to: navigation, search
(Created page with "<categorytree mode=pages hideroot=on>Bugify</categorytree> Category:Bugify")
 
 
Line 1: Line 1:
 
<categorytree mode=pages hideroot=on>Bugify</categorytree>
 
<categorytree mode=pages hideroot=on>Bugify</categorytree>
 
[[Category:Bugify]]
 
[[Category:Bugify]]
 +
 +
 +
== Removing "Next Release" Labels from Issues ==
 +
"Next Release" label id is '''5''' and this SQL removes this label from all existing issues. <br />
 +
Run this prior to a new release
 +
<source lang=sql>
 +
DELETE FROM bugify.issue_labels WHERE label_id = 5;
 +
</source>

Latest revision as of 11:56, 27 April 2016


Removing "Next Release" Labels from Issues

"Next Release" label id is 5 and this SQL removes this label from all existing issues.
Run this prior to a new release

DELETE FROM bugify.issue_labels WHERE label_id = 5;