MySQL TIMESTAMP to default NULL, not CURRENT_TIMESTAMP
Use this query to add your column
ALTER TABLE `customers`
ADD COLUMN `s_timestamp` TIMESTAMP NULL DEFAULT NULL;
And, if you want to get current timestamp on update only :
ALTER TABLE `customers`
ADD COLUMN `s_timestamp` TIMESTAMP NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP;