create table s7_ note
(
id mediumint unsigned not null auto_ inc rement c omment 'Id',
title varchar(100) not null comment '标题',
content longtext not null comment '内容',
addtime datetime not null default current_timestamp comment '添加时间',
ip int not null comment 'IP地址',
primary key(id)
)engine=InnoDB default charset utf8 comment '留言表';