| @@ -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; | |||||