summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-01-22 15:23:23 -1000
committerPeter Stone <thepeterstone@gmail.com>2026-01-22 15:23:23 -1000
commitdb5deb2330448c75ba6b719e6a397832362b222a (patch)
treecad9f389008540ef743ca8da63218cb677fa4ff4
parent068b04c0004e38a760c463589d45c7cfd090eec8 (diff)
Add migration to remove resolved bugs
Deletes 12 bug reports that have been fixed: - Hide future tasks, modal menu, tap to expand - terst.org styling, visual differentiation, urgency sort - Todoist link, completed tasks, timestamp, background image - Task edit details Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
-rw-r--r--migrations/006_remove_resolved_bugs.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/migrations/006_remove_resolved_bugs.sql b/migrations/006_remove_resolved_bugs.sql
new file mode 100644
index 0000000..666886b
--- /dev/null
+++ b/migrations/006_remove_resolved_bugs.sql
@@ -0,0 +1,2 @@
+-- Remove bugs that have been resolved
+DELETE FROM bugs WHERE id IN (1, 2, 3, 4, 5, 6, 7, 9, 10, 14, 15, 16);