/ db / migrations / rename-technical-debt-review.sql
rename-technical-debt-review.sql
1  -- Rename technicalDebtReview to todoTaskCounter
2  -- This cron task only counts TODO.md tasks, not comprehensive technical debt review
3  
4  UPDATE cron_jobs
5  SET task_key = 'todoTaskCounter',
6      name = 'TODO Task Counter'
7  WHERE task_key = 'technicalDebtReview';