-- Migrate any pending_approval tasks to completed (unblock the pipeline) UPDATE tasks SET status = 'completed' WHERE status = 'pending_approval'; -- Note: SQLite cannot drop columns. The merge_requires_approval column on -- initiatives and requires_approval column on tasks are left in the DB but -- removed from the Drizzle schema. Drizzle ignores extra DB columns.