4 lines
211 B
SQL
Executable File
4 lines
211 B
SQL
Executable File
-- add estimateStartDate and actualStartDate field.
|
|
ALTER TABLE `zt_task` ADD `estimateStartDate` DATETIME NOT NULL AFTER `assignedDate` ,
|
|
ADD `actualStartDate` DATETIME NOT NULL AFTER `estimateStartDate`;
|