Increase size of myaac_visitors.page column to 2048

Thanks to OtLand user kaleuui (https://otland.net/threads/myaac-v0-8-3.268654/page-11#post-2643853)
This commit is contained in:
slawkens
2021-02-16 01:05:29 +01:00
parent 9ff032740c
commit a4fa7567aa
3 changed files with 6 additions and 2 deletions

View File

@@ -324,7 +324,7 @@ CREATE TABLE `myaac_visitors`
(
`ip` VARCHAR(16) NOT NULL,
`lastvisit` INT(11) NOT NULL DEFAULT 0,
`page` VARCHAR(100) NOT NULL,
`page` VARCHAR(2048) NOT NULL,
UNIQUE (`ip`)
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;