17 lines
927 B
SQL
17 lines
927 B
SQL
create table fad_oa.socket_contact
|
|
(
|
|
id int auto_increment comment '通信id'
|
|
primary key,
|
|
contact_user_id int not null comment '用户id',
|
|
user_id int not null comment '发送者',
|
|
room_id int not null comment '房间号',
|
|
create_time datetime default CURRENT_TIMESTAMP null comment '创建时间',
|
|
create_by varchar(255) null comment '创建人',
|
|
update_time datetime default CURRENT_TIMESTAMP null on update CURRENT_TIMESTAMP comment '更新时间',
|
|
update_by varchar(255) null comment '更新人',
|
|
del_flag int default 0 not null comment '删除标志',
|
|
remark varchar(255) null comment '备注'
|
|
)
|
|
comment '通信目录表';
|
|
|