Removed length limits for search_id & autologin_id (#609)

This commit is contained in:
Roman Kelesidis 2023-03-17 12:45:06 +07:00 committed by GitHub
commit 9b5282d0c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -1114,7 +1114,7 @@ CREATE TABLE IF NOT EXISTS `bb_search_results`
CHARACTER SET utf8
COLLATE utf8_bin NOT NULL DEFAULT '',
`search_type` TINYINT(4) NOT NULL DEFAULT '0',
`search_id` VARCHAR(12)
`search_id` VARCHAR(255)
CHARACTER SET utf8
COLLATE utf8_bin NOT NULL DEFAULT '',
`search_time` INT(11) NOT NULL DEFAULT '0',
@ -1353,7 +1353,7 @@ CREATE TABLE IF NOT EXISTS `bb_users`
`user_interests` VARCHAR(255) NOT NULL DEFAULT '',
`user_actkey` VARCHAR(32) NOT NULL DEFAULT '',
`user_newpasswd` VARCHAR(32) NOT NULL DEFAULT '',
`autologin_id` VARCHAR(12)
`autologin_id` VARCHAR(255)
CHARACTER SET utf8
COLLATE utf8_bin NOT NULL DEFAULT '',
`user_newest_pm_id` MEDIUMINT(8) NOT NULL DEFAULT '0',