mysql变更格式
数据库:ucs
表名:tb_jinan_feed
sql:
create table `tb_jinan_feed`(
`id` int(11) not null primary key AUTO_INCREMENT,
`name` varchar(50) not null default '' comment '姓名或昵称',
`phone` varchar(15) not null default '' comment '电话',
`email` varchar(255) not null default '' comment '邮箱',
`content` varchar(5000) not null default '' comment '内容描述',
`status` tinyint(1) NOT null DEFAULT 1 COMMENT '状态,方便其他扩展,默认1',
`create_time` timestamp not null default current_timestamp,
`last_update_time` timestamp not null default current_timestamp on update current_timestamp
) engine =InnoDB default charset =utf8;
ALTER TABLE tb_jinan_feed COMMENT = '济南-意见反馈表';