码迷,mamicode.com
首页 > 其他好文 > 详细

类别表

时间:2017-08-13 15:11:20      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:comment   com   _id   not   update   time   current   primary   rem   

CREATE TABLE `t_category` (
`category_id` int(11) NOT NULL AUTO_INCREMENT,
`category_name` varchar(32) NOT NULL DEFAULT ‘‘,
`parent_id` int(11) NOT NULL DEFAULT ‘-1‘,
`category_state` tinyint(4) NOT NULL DEFAULT ‘1‘ COMMENT ‘1上线,0不上线‘,
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`category_id`),
UNIQUE KEY `category_name` (`category_name`)
)

类别表

标签:comment   com   _id   not   update   time   current   primary   rem   

原文地址:http://www.cnblogs.com/panxuejun/p/7353335.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!