Skip to content

Commit 9ee17bd

Browse files
committed
v2.22
1 parent 86529d8 commit 9ee17bd

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

instance/doc/db_3.sql

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1130,4 +1130,24 @@ INSERT INTO `lh_speech_language_dialect` (`id`, `language_id`, `lang_name`, `lan
11301130
(61, 31, '日本語', 'ja-JP'),
11311131
(62, 32, 'Lingua latīna', 'la');
11321132

1133-
INSERT INTO `lh_chat_config` (`identifier`, `value`, `type`, `explain`, `hidden`) VALUES ('front_tabs', 'online_users,online_map,pending_chats,active_chats,unread_chats,closed_chats,online_operators', '0', 'Home page tabs order', '0');
1133+
INSERT INTO `lh_chat_config` (`identifier`, `value`, `type`, `explain`, `hidden`) VALUES ('front_tabs', 'online_users,online_map,pending_chats,active_chats,unread_chats,closed_chats,online_operators', '0', 'Home page tabs order', '0');
1134+
1135+
ALTER TABLE `lh_chat_online_user`
1136+
ADD `notes` varchar(250) COLLATE 'utf8_general_ci' NOT NULL,
1137+
COMMENT='';
1138+
1139+
ALTER TABLE `lh_abstract_auto_responder`
1140+
ADD `repeat_number` int(11) NOT NULL DEFAULT '1',
1141+
COMMENT='';
1142+
1143+
ALTER TABLE `lh_chat`
1144+
ADD `wait_timeout_repeat` int(11) NOT NULL,
1145+
COMMENT='';
1146+
1147+
ALTER TABLE `lh_abstract_proactive_chat_invitation`
1148+
ADD `repeat_number` int NOT NULL DEFAULT '1',
1149+
COMMENT='';
1150+
1151+
ALTER TABLE `lh_abstract_email_template`
1152+
ADD `user_mail_as_sender` tinyint(4) NOT NULL,
1153+
COMMENT='';

0 commit comments

Comments
 (0)