summaryrefslogtreecommitdiff
path: root/migrations/021_drop_tasks.sql
diff options
context:
space:
mode:
authorDoot Agent <agent@doot.local>2026-07-06 00:00:59 +0000
committerDoot Agent <agent@doot.local>2026-07-06 00:00:59 +0000
commit945c34590677e161a711ccaff0e1077197b1b178 (patch)
treedf26e8ba5a369b3323649c2fab95bd8e7a49b58e /migrations/021_drop_tasks.sql
parentcd14604bbef17f696475cf8737f1e41c9fa2dd06 (diff)
feat: remove Todoist integration entirely
Native tasks (native_tasks table) fully replace Todoist. All Todoist API code, store functions, handlers, routes, templates, and tests have been removed. Migration 021 drops the now-unused tasks cache table. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'migrations/021_drop_tasks.sql')
-rw-r--r--migrations/021_drop_tasks.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/migrations/021_drop_tasks.sql b/migrations/021_drop_tasks.sql
new file mode 100644
index 0000000..2db3f86
--- /dev/null
+++ b/migrations/021_drop_tasks.sql
@@ -0,0 +1,2 @@
+-- Drop the Todoist task cache table. All tasks have been migrated to native_tasks.
+DROP TABLE IF EXISTS tasks;