From 65a16b84069e7dcef3398dd6963c93c2525f3f8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B8nstantine=20Kovalensky?= <45331093+kovalensky@users.noreply.github.com> Date: Wed, 1 Nov 2023 22:51:09 +0400 Subject: [PATCH] Increase auth_key char length (#1014) --- install/sql/mysql.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/sql/mysql.sql b/install/sql/mysql.sql index 6a0054210..f912da240 100644 --- a/install/sql/mysql.sql +++ b/install/sql/mysql.sql @@ -414,7 +414,7 @@ DROP TABLE IF EXISTS `bb_bt_users`; CREATE TABLE IF NOT EXISTS `bb_bt_users` ( `user_id` MEDIUMINT(9) NOT NULL DEFAULT '0', - `auth_key` CHAR(10) + `auth_key` CHAR(20) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `u_up_total` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',