i need the correct format for inserting the current time into MySQL
Use TIMESTAMP, and CURRENT_TIMESTAMP by default
ALTER TABLE `sample` ADD COLUMN `current_date` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
Use TIMESTAMP, and CURRENT_TIMESTAMP by default