mysql创建时间和更新时间
2020-01-20 本文已影响0人
郭海杰
alter table posts add create_time timestamp(0) NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
alter table posts add update_time timestamp(0) NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '更新时间',