-- 类目 create table `product_category` ( `category_id` int not null auto_increment, `category_name` varchar(64) not null comment '类目名字', `category_type` int not null comment '类目编号', `create_time` timestamp not null default current_timestamp comment '创建时间', `update_time` timestamp not null default current_timestamp on update current_timestamp comment '修改时间', primary key (`category_id`) );
- 这里的创建时间和更新时间,最好加上 current_timestamp,因为这样在后台业务处理的时候就不需要关心他们的时间问题了,数据库自动帮我们处理。
- on update current_timestamp:只在更新的时候触发。