You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
541 B
15 lines
541 B
CREATE TABLE IF NOT EXISTS `user_info` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`email` varchar(255) DEFAULT NULL,
|
|
`password` varchar(255) DEFAULT NULL,
|
|
`name` varchar(255) DEFAULT NULL,
|
|
`nick` varchar(255) DEFAULT NULL,
|
|
`detail_info` longtext DEFAULT NULL,
|
|
`create_time` varchar(20) DEFAULT NULL,
|
|
`modified_time` varchar(20) DEFAULT NULL,
|
|
`level` int(11) DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
INSERT INTO `user_info` set name='admin', email='admin001@example.com', password='123456';
|