Commit 7a9459bb by 仲光辉

feat: add sql.

parent f8eecd2e
# alter table admin
# alter table admin
......@@ -1624,6 +1624,32 @@
### 会议室改版
alter table room_order
add pwd varchar(100) default null null comment '预约密码';
### 会议室成员
CREATE TABLE room_order_member
(
room_order_member_uuid BIGINT(19) NOT NULL PRIMARY KEY COMMENT 'room_order_member uuid',
room_order_uuid CHAR(32) NOT NULL COMMENT 'room order uuid',
user_uuid CHAR(32) NOT NULL COMMENT 'user uuid',
wx_union_id CHAR(128) NOT NULL COMMENT '微信的unionId',
role TINYINT(1) DEFAULT 1 COMMENT '角色:0:会议创建人 1:参会人员 default: 1'
) COMMENT '会议成员信息';
alter table room_order_member
add create_time datetime not null comment '创建时间';
alter table room_order_member
add update_time datetime not null comment '更新时间';
alter table room_order_member
add is_delete tinyint(1) default 0 null comment '是否删除 0:否 1:是';
alter table room_order_member
add staff_name varchar(30) null comment '员工姓名';
alter table room_order_member
add staff_phone varchar(20) null comment '员工手机号';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment