parent
d8f5331e9b
commit
54dd53e31d
@ -0,0 +1,26 @@
|
|||||||
|
alter table tb_user_info
|
||||||
|
add type int null comment '用户类型';
|
||||||
|
|
||||||
|
create table tb_artist_info
|
||||||
|
(
|
||||||
|
id varchar(20) not null comment 'id'
|
||||||
|
primary key,
|
||||||
|
user_id varchar(20) null comment 'tb_user表id',
|
||||||
|
background_image varchar(255) null comment '艺人背景图',
|
||||||
|
address varchar(255) null comment '所在地区',
|
||||||
|
style varchar(20) null comment '表tb_tag_info的id',
|
||||||
|
band_user_id varchar(20) null comment 'tb_user表中厂牌类型用户的id'
|
||||||
|
)
|
||||||
|
comment '音乐人基础信息';
|
||||||
|
|
||||||
|
create table tb_artist_responsible
|
||||||
|
(
|
||||||
|
id varchar(20) not null comment 'id'
|
||||||
|
primary key,
|
||||||
|
user_id varchar(20) null comment 'tb_user表id',
|
||||||
|
name varchar(255) null comment '用户名',
|
||||||
|
sex int null comment '性别',
|
||||||
|
mobile varchar(255) null comment '手机号'
|
||||||
|
)
|
||||||
|
comment '音乐人负责人';
|
||||||
|
|
Loading…
Reference in new issue