mirror of
https://github.com/chatopera/cosin.git
synced 2025-08-01 16:38:02 +08:00
#102 fix SQL exection error
This commit is contained in:
parent
bd4a956f8e
commit
f2a32720ff
@ -498,7 +498,7 @@ CREATE TABLE `uk_agentservice` (
|
||||
`lastmessage` datetime DEFAULT NULL COMMENT '最后一条消息时间',
|
||||
`waittingtimestart` datetime DEFAULT NULL COMMENT '进入排队时间',
|
||||
`lastgetmessage` datetime DEFAULT NULL COMMENT '坐席最后一条消息时间',
|
||||
`lastmsg` text DEFAULT '' COMMENT '最后一条消息内容',
|
||||
`lastmsg` text COMMENT '最后一条消息内容',
|
||||
`agentskill` varchar(100) DEFAULT '' COMMENT '技能组',
|
||||
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
||||
`creater` varchar(255) DEFAULT NULL COMMENT '创建人',
|
||||
@ -637,7 +637,7 @@ CREATE TABLE `uk_agentuser` (
|
||||
`lastmessage` datetime DEFAULT NULL COMMENT '最后一条消息时间',
|
||||
`waittingtimestart` datetime DEFAULT NULL COMMENT '进入队列时间',
|
||||
`lastgetmessage` datetime DEFAULT NULL COMMENT '最后一条消息时间',
|
||||
`lastmsg` text DEFAULT '' COMMENT '最后一条消息',
|
||||
`lastmsg` text COMMENT '最后一条消息',
|
||||
`agentskill` varchar(100) DEFAULT '' COMMENT '技能组',
|
||||
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
||||
`creater` varchar(255) DEFAULT NULL COMMENT '创建人',
|
||||
@ -1610,7 +1610,7 @@ CREATE TABLE `cs_contact_notes` (
|
||||
`createtime` datetime NOT NULL COMMENT '创建时间',
|
||||
`updatetime` datetime NOT NULL COMMENT '更新时间',
|
||||
`category` varchar(200) DEFAULT NULL COMMENT '内容类型',
|
||||
`content` varchar(1000) DEFAULT NULL COMMENT '内容',
|
||||
`content` text COMMENT '内容',
|
||||
`creater` varchar(32) DEFAULT NULL COMMENT '创建人',
|
||||
`datastatus` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否已删除',
|
||||
`agentuser` varchar(32) DEFAULT NULL COMMENT '在线访客记录ID',
|
||||
@ -2914,7 +2914,7 @@ CREATE TABLE `uk_recentuser` (
|
||||
`name` varchar(100) DEFAULT NULL COMMENT '名称',
|
||||
`orgi` varchar(100) DEFAULT NULL COMMENT '租户ID',
|
||||
`user_id` varchar(32) DEFAULT NULL COMMENT '用户ID',
|
||||
`lastmsg` text DEFAULT NULL COMMENT '最后一条消息',
|
||||
`lastmsg` text COMMENT '最后一条消息',
|
||||
`newmsg` int(11) DEFAULT NULL COMMENT '未读消息数量',
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='公共已读消息';
|
||||
|
Loading…
x
Reference in New Issue
Block a user