If you want to initialize and update the value with every change, use this:
alter table `vts`.`tblpickpoint` add column `InsertionDate` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP after `PickPointLatLong`
If you want only creation time, use this:
alter table `vts`.`tblpickpoint` add column `InsertionDate` TIMESTAMP DEFAULT CURRENT_TIMESTAMP after `PickPointLatLong`
source share