Files
2018-01-29 14:36:51 +08:00

11 lines
220 B
SQL

/*用户表*/
CREATE TABLE `user` (
`uid` int(10) NOT NULL AUTO_INCREMENT,
`uname` varchar(255) DEFAULT NULL,
`birth` date DEFAULT NULL,
KEY `uid` (`uid`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8