Skip to content

Commit

Permalink
Merge pull request #25 from iamsxm/nutzboot
Browse files Browse the repository at this point in the history
修复用户表初始化SQL错误
  • Loading branch information
EggsBlue authored Mar 29, 2019
2 parents 572ef64 + 8e16a06 commit 8ea425a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lulichat.sql
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ CREATE TABLE `user` (
`sign` varchar(200) DEFAULT NULL COMMENT '签名',
`avatar` varchar(200) DEFAULT NULL COMMENT '头像',
`status` varchar(20) DEFAULT NULL COMMENT '在线状态',
`create_time datatime DEFAULT NULL COMMENT '创建时间'
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=102 DEFAULT CHARSET=utf8 COMMENT='用户表';

Expand Down

0 comments on commit 8ea425a

Please sign in to comment.