From 54dd53e31d2b701f719f8dced75df6fbedf69a73 Mon Sep 17 00:00:00 2001 From: pikaqiudeshujia Date: Thu, 25 Apr 2024 10:54:28 +0800 Subject: [PATCH] =?UTF-8?q?release-sql=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- luoo_user/src/main/resources/sql/20240425.sql | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 luoo_user/src/main/resources/sql/20240425.sql diff --git a/luoo_user/src/main/resources/sql/20240425.sql b/luoo_user/src/main/resources/sql/20240425.sql new file mode 100644 index 0000000..9c8e5e8 --- /dev/null +++ b/luoo_user/src/main/resources/sql/20240425.sql @@ -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 '音乐人负责人'; +