add-liche-dealer-apply
This commit is contained in:
+4
-3
@@ -18,9 +18,10 @@ create table lc_app_liche_users (
|
||||
u_time timestamp not null default current_timestamp on update current_timestamp,
|
||||
primary key (id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='狸车小程序用户表';
|
||||
alter table lc_app_liche_users add dealer tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否分销' after jsondata;
|
||||
alter table lc_app_liche_users add up_uid int(10) NOT NULL DEFAULT '0' COMMENT '上级uid' after dealer;
|
||||
|
||||
alter table lc_app_liche_users add dealer tinyint(1) not null default '0' comment '是否分销' after jsondata;
|
||||
alter table lc_app_liche_users add up_uid int(10) not null default '0' comment '上级uid' after dealer;
|
||||
alter table lc_app_liche_users add manage tinyint(1) not null default 0 comment '是否分销管理' after dealer;
|
||||
alter table lc_app_liche_users add deal_uid int(10) not null default 0 comment '审核分销uid' after dealer;
|
||||
|
||||
-- ----------------------------
|
||||
-- Title:狸车小程序cms
|
||||
|
||||
Reference in New Issue
Block a user