From dac32b12e4e334b6035f7eccc8e95249eb6da56a Mon Sep 17 00:00:00 2001 From: lijiarao Date: Tue, 4 Jan 2022 10:17:14 +0800 Subject: [PATCH] =?UTF-8?q?add=20=E6=96=B0=E5=A2=9E=E4=BC=9A=E8=AE=AE?= =?UTF-8?q?=E8=81=94=E7=B3=BB=E4=BA=BAsql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/2022-1-4变更.sql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 db/2022-1-4变更.sql diff --git a/db/2022-1-4变更.sql b/db/2022-1-4变更.sql new file mode 100644 index 00000000..4a35ed23 --- /dev/null +++ b/db/2022-1-4变更.sql @@ -0,0 +1,14 @@ +-- auto-generated definition +create table pay_meeting_contacts +( + id varchar(36) not null comment 'id', + meeting_id varchar(50) null comment '会议id', + meeting_contacts_id varchar(50) null comment '会议联系人id', + meeting_contacts_name varchar(50) null comment '会议联系人姓名', + meeting_contacts_phone varchar(50) null comment '会议联系人电话' +) + comment '会议关联联系人表'; + +create unique index Index_1 + on pay_meeting_contacts (id); +