From a23ad46580cb95d2817b6461ed79ba4d61e70385 Mon Sep 17 00:00:00 2001 From: Remdex Date: Thu, 26 Apr 2018 08:18:48 +0200 Subject: [PATCH] fix #1211 --- lhc_web/doc/update_db/structure.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lhc_web/doc/update_db/structure.json b/lhc_web/doc/update_db/structure.json index 4113e3d9f9..e6fc461947 100644 --- a/lhc_web/doc/update_db/structure.json +++ b/lhc_web/doc/update_db/structure.json @@ -8237,7 +8237,7 @@ "lh_users_setting": "CREATE TABLE `lh_users_setting` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n `user_id` int(11) NOT NULL,\n `identifier` varchar(50) NOT NULL,\n `value` text NOT NULL,\n PRIMARY KEY (`id`),\n KEY `user_id` (`user_id`,`identifier`)\n) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci", "lh_users_setting_option": "CREATE TABLE `lh_users_setting_option` (\n `identifier` varchar(50) NOT NULL,\n `class` varchar(50) NOT NULL,\n `attribute` varchar(40) NOT NULL,\n PRIMARY KEY (`identifier`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci", "lh_cobrowse": "CREATE TABLE `lh_cobrowse` ( `id` int(11) NOT NULL AUTO_INCREMENT, `chat_id` int(11) NOT NULL, `mtime` int(11) NOT NULL, `url` varchar(250) NOT NULL, `initialize` longtext NOT NULL, `modifications` longtext NOT NULL, `finished` tinyint(1) NOT NULL, `w` int(11) NOT NULL, `wh` int(11) NOT NULL, `x` int(11) NOT NULL, `y` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`)) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci", - "lh_chat_paid": "CREATE TABLE `lh_chat_paid` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hash` varchar(250) NOT NULL, `chat_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `hash` (`hash`), KEY `chat_id` (`chat_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci", + "lh_chat_paid": "CREATE TABLE `lh_chat_paid` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hash` varchar(250) NOT NULL, `chat_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `hash` (`hash`(191)), KEY `chat_id` (`chat_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci", "lh_abstract_rest_api_key": "CREATE TABLE `lh_abstract_rest_api_key` ( `id` int(11) NOT NULL AUTO_INCREMENT, `api_key` varchar(50) NOT NULL, `user_id` int(11) NOT NULL, `active` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `user_id` (`user_id`), KEY `api_key_active` (`api_key`,`active`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci", "lh_departament_group_user": "CREATE TABLE `lh_departament_group_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `dep_group_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `dep_group_id` (`dep_group_id`), KEY `user_id` (`user_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci", "lh_departament_group_member": "CREATE TABLE `lh_departament_group_member` ( `id` int(11) NOT NULL AUTO_INCREMENT, `dep_id` int(11) NOT NULL, `dep_group_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `dep_group_id` (`dep_group_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci",