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 00:56:25 +01:00
parent 19ffd57b34
commit 792ec17d18
3 changed files with 6 additions and 2 deletions

View File

@@ -315,7 +315,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;