add 新增会议联系人sql
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user