This commit is contained in:
rnchg
2026-07-14 21:33:39 +08:00
commit 4b28b75e57
2227 changed files with 768410 additions and 0 deletions
@@ -0,0 +1,9 @@
ALTER TABLE "flow_task_template"
ADD COLUMN "is_break" bool,
ADD COLUMN "is_preempt" bool;
UPDATE "flow_task_template" SET "is_break" = TRUE, "is_preempt" = FALSE WHERE "id" = 'Standby';
UPDATE "flow_task_template" SET "is_break" = FALSE, "is_preempt" = FALSE WHERE "id" = 'Charge';
UPDATE "flow_task_template" SET "is_break" = TRUE, "is_preempt" = TRUE WHERE "id" = 'Avoid';
UPDATE "flow_task_template" SET "is_break" = TRUE, "is_preempt" = FALSE WHERE "id" = 'Single';
UPDATE "flow_task_template" SET "is_break" = TRUE, "is_preempt" = FALSE WHERE "id" = 'Double';