Commit e3a063fe by mercymodest

feat:- add yoga sql

parent a602f55a
# CREATE TABLE `api_client_credentials`
# CREATE TABLE `api_client_credentials`
......@@ -286,6 +286,21 @@ alter table `groups`
alter table `groups`
modify group_type tinyint(1) null comment '角色类型 0-超级管理员 1-教练;2-店长;3-前台;4-跟进教练;5-分销员;6-其他';
alter table user_third_auth
modify user_type tinyint(1) default 1 null comment '用户类型:1-用户;2-教练 3-管理员';
alter table admin
add code char(32) null comment '用户唯一编码,等同于 uuid';
create index admin_code_index
on admin (code);
alter table user_card
add validity_num int default 0 null comment '开卡有效期值';
alter table user_card
add validity_unit int null comment '开卡有效期单位 0:天 1:月';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment