diff --git a/luoo_user/src/main/resources/sql/20240425.sql b/luoo_user/src/main/resources/sql/20240425.sql index e8367d3..c9fd5c6 100644 --- a/luoo_user/src/main/resources/sql/20240425.sql +++ b/luoo_user/src/main/resources/sql/20240425.sql @@ -28,4 +28,14 @@ create table tb_artist_responsible ) comment '音乐人负责人'; +create table tb_artist_user +( + id varchar(20) not null comment 'id' + primary key, + artist_id varchar(20) null comment '音乐人id', + user_id varchar(20) null comment '艺人id' +) + comment '音乐人-艺人关联表'; + +