This commit is contained in:
710leo 2020-11-18 16:14:01 +08:00
parent bddd93cd80
commit fa263eb68d
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@ CREATE TABLE `user`
`portrait` varchar(2048) not null default '',
`intro` varchar(2048) not null default '',
`organization` varchar(255) not null default '',
`typ` tinyint(1) not null default 1 comment '0: temporary account; 1: long-term account'
`status` tinyint(1) not null default 1 comment '0: disabled; 1: active 2: inactive'
`typ` tinyint(1) not null default 0 comment '0: long-term account; 1: temporary account',
`status` tinyint(1) not null default 0 comment '0: active; 1: inactive 2: disable',
`is_root` tinyint(1) not null,
`leader_id` int unsigned not null default 0,
`leader_name` varchar(32) not null default '',