文章表

来源:互联网 发布:网络拨打电话软件 编辑:程序博客网 时间:2024/06/01 08:53
drop table if exists t_articles ;create table t_articles(id int(10) primary key auto_increment comment '文章id' ,title varchar(20) not null  comment '文章标题',writer varchar(20) not null comment '作者',content text not null comment '文章内容' ,logip varchar(20) comment 'ip',logdate varchar(20) comment '发布日期',orderby char(2) DEFAULT 0  comment '显示顺序.-2不显示。默认0显示;数字越小排名越前',class varchar(20) comment '文章类型.例如房产/二手/招聘/',extend1 varchar(20) comment '保留扩展字段1',extend2 varchar(20) comment '保留扩展字段2');

原创粉丝点击