Fix: Propagate priority through to DAG subtasks (#2078)

* feat: add priority column to v1_match

* feat: wire up writes

* fix: more wiring

* fix: migration name
This commit is contained in:
matt
2025-08-04 12:22:28 -04:00
committed by GitHub
parent c44c70bd0c
commit 13b2e1d26c
8 changed files with 67 additions and 51 deletions
+1
View File
@@ -462,6 +462,7 @@ CREATE TABLE v1_match (
-- references the existing task id, which may be set when we're replaying a task
trigger_existing_task_id bigint,
trigger_existing_task_inserted_at timestamptz,
trigger_priority integer,
CONSTRAINT v1_match_pkey PRIMARY KEY (id)
);