duidui_fiber/docs/migrations/add_prerequisite_task_id.sql
2026-03-27 10:34:03 +08:00

6 lines
310 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 任务表增加前置任务ID解锁关系需完成前置任务后才能开启本任务
-- 执行前请确认表名与数据库一致
ALTER TABLE camp_tasks
ADD COLUMN prerequisite_task_id VARCHAR(64) NULL DEFAULT NULL COMMENT '前置任务ID完成后才能开启本任务递进关系';