Mysql – Update_timestamp not getting updated automatically on table updates
I have a table that looks like this: CREATE TABLE `test_table` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `ref_id` bigint(20) NOT NULL, `count` int(11) DEFAULT NULL, `status` tinyint(4) NOT NULL, `create_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `update_timestamp` timestamp NOT NULL DEFAULT…