fix rdb sql

This commit is contained in:
710leo 2020-11-20 18:21:10 +08:00
parent 6691801721
commit d5430256c7
1 changed files with 2 additions and 2 deletions

View File

@ -33,5 +33,5 @@ alter table user add column create_at timestamp not null default CURRENT_TIMESTA
update user set create_at = '2020-11-14 17:00:08';
alter table user add `organization` varchar(255) not null default '' after intro;
alter table user add `typ` tinyint(1) not null default 1 comment '0: long-term account; 1: temporary account' after intro;
alter table user add `status` tinyint(1) not null default 1 comment '0: active; 1: inactive 2: disable' after intro;
alter table user add `typ` tinyint(1) not null default 0 comment '0: long-term account; 1: temporary account' after intro;
alter table user add `status` tinyint(1) not null default 0 comment '0: active; 1: inactive 2: disable' after intro;