feature: visitors counter shows now user browser, and also if its bot

This commit is contained in:
slawkens
2023-02-17 18:41:25 +01:00
parent 6785ecad1d
commit a98cb66c53
7 changed files with 49 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
SET @myaac_database_version = 33;
SET @myaac_database_version = 34;
CREATE TABLE `myaac_account_actions`
(
@@ -330,6 +330,7 @@ CREATE TABLE `myaac_visitors`
`ip` VARCHAR(45) NOT NULL,
`lastvisit` INT(11) NOT NULL DEFAULT 0,
`page` VARCHAR(2048) NOT NULL,
`user_agent` VARCHAR(255) NOT NULL DEFAULT '',
UNIQUE (`ip`)
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;