Add compelted tasks to jobs table.

This commit is contained in:
Patrick Fic
2023-07-19 16:11:26 -07:00
parent 4ce75ead52
commit 3defe7201f
3 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
-- Could not auto-generate a down migration.
-- Please write an appropriate down migration for the SQL below:
-- alter table "public"."jobs" add column "completed_tasks" jsonb
-- null default jsonb_build_array();

View File

@@ -0,0 +1,2 @@
alter table "public"."jobs" add column "completed_tasks" jsonb
null default jsonb_build_array();