From 9fd901bc7ff6baae3623886f89df64652fe1354d Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sun, 1 Feb 2026 15:15:25 +0300 Subject: [PATCH] crates/common: add migration for multi-branch eval and scheduling shares Signed-off-by: NotAShelf Change-Id: I3f792d0e081da93adbcf60bff8570eed6a6a6964 --- crates/common/migrations/007_branch_and_scheduling.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 crates/common/migrations/007_branch_and_scheduling.sql diff --git a/crates/common/migrations/007_branch_and_scheduling.sql b/crates/common/migrations/007_branch_and_scheduling.sql new file mode 100644 index 0000000..2ccd72e --- /dev/null +++ b/crates/common/migrations/007_branch_and_scheduling.sql @@ -0,0 +1,3 @@ +-- Multi-branch evaluation and scheduling shares +ALTER TABLE jobsets ADD COLUMN IF NOT EXISTS branch VARCHAR(255) DEFAULT NULL; +ALTER TABLE jobsets ADD COLUMN IF NOT EXISTS scheduling_shares INTEGER NOT NULL DEFAULT 100;