-# thinkphp博客系统
mysql设计
创建管理员表tp_admin
create table tp_admin(
id int primary key not null auto_increment comment '自增id',
username varchar(20) not null comment '用户名',
password varchar(20) not null comment '密码',
nickname varchar(20) not null comment '昵称',
email varchar(20) not null comment '邮箱',
status enum('0','1') not null comment '0是禁用,1是可用',
is_super enum('0','1') not null comment '0是普通管理员,1是超级管理员',
create_time varchar(20) not null comment '创建时间',
update_time varchar(20

最低0.47元/天 解锁文章
1080

被折叠的 条评论
为什么被折叠?



