ソースを参照

update task list

tags/Baseline_30082024_BACKEND_UAT
cyril.tsui 1年前
コミット
079b2b691b
1個のファイルの変更27行の追加0行の削除
  1. +27
    -0
      src/main/resources/db/changelog/changes/20240719_01_cyril/01_update_task.sql

+ 27
- 0
src/main/resources/db/changelog/changes/20240719_01_cyril/01_update_task.sql ファイルの表示

@@ -0,0 +1,27 @@
-- liquibase formatted sql
-- changeset cyril:task,project_task,task_template_tasks

INSERT INTO task (id,version,deleted,name,taskGroupId)
VALUES (42,0,0,'5.9 Others',5);
INSERT INTO task (id,version,deleted,name,taskGroupId)
VALUES (43,0,0,'5.10 Management Timesheet Allocation',5);
INSERT INTO task (id,version,deleted,name,taskGroupId)
VALUES (44,0,0,'5.11 Manhour Import',5);
UPDATE task
SET name='5.7 External Training'
WHERE id=40;
UPDATE task
SET name='5.8 External Training'
WHERE id=41;

update project_task set task_id = 43
where task_id = 40;

update project_task set task_id = 44
where task_id = 41;

update task_template_tasks set tasksId = 43
where tasksId = 40;

update task_template_tasks set tasksId = 44
where tasksId = 41;

読み込み中…
キャンセル
保存