From dbe0229b5075bf44a12ce4b03b315accd56f6fec Mon Sep 17 00:00:00 2001 From: pikaqiudeshujia Date: Thu, 25 Apr 2024 15:36:40 +0800 Subject: [PATCH] =?UTF-8?q?release-=E6=96=B0=E5=A2=9E=E9=9F=B3=E4=B9=90?= =?UTF-8?q?=E4=BA=BA-=E8=89=BA=E4=BA=BA=E5=85=B3=E8=81=94=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- luoo_user/src/main/resources/sql/20240425.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 '音乐人-艺人关联表'; + +