ALTER TABLE `order_book` ADD `OrderTime` TIMESTAMP(2) on update CURRENT_TIMESTAMP(2) NOT NULL AFTER `ID`; code example
Example: mysql create timestamp column
ALTER TABLE `table1` ADD `lastUpdated` TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ;