parent
cd9298e89f
commit
9c81dcc153
@ -1,11 +1,13 @@
|
|||||||
create table tb_user_process
|
create table tb_user_process
|
||||||
(
|
(
|
||||||
id varchar(20) not null
|
id varchar(20) not null
|
||||||
primary key,
|
primary key,
|
||||||
user_id varchar(20) null comment '用户id',
|
user_id varchar(20) null comment '用户id',
|
||||||
type int(5) null comment '申请类型 1-音乐人 2-厂牌',
|
type int(5) null comment '申请类型 1-音乐人 2-厂牌',
|
||||||
status int(5) null comment '申请状态 0-待审批 1-审批通过 2-审批成功',
|
status int(5) null comment '申请状态 0-待审批 1-审批通过 2-审批成功',
|
||||||
content longtext null comment '拒绝理由'
|
content longtext null comment '拒绝理由',
|
||||||
|
create_time datetime null comment '创建时间',
|
||||||
|
modify_time datetime null comment '修改时间'
|
||||||
)
|
)
|
||||||
comment '人员注册审批表';
|
comment '人员注册审批表';
|
||||||
|
|
||||||
|
Loading…
Reference in new issue