Added Action Taken on Task

This commit is contained in:
2026-02-21 15:44:12 +08:00
parent d2f1bcf9b3
commit 1478667bbf
5 changed files with 224 additions and 2 deletions
@@ -0,0 +1,10 @@
DO $$
BEGIN
IF NOT EXISTS (
SELECT 1 FROM information_schema.columns
WHERE table_name='tasks' AND column_name='action_taken'
) THEN
ALTER TABLE public.tasks ADD COLUMN action_taken jsonb;
END IF;
END
$$;