Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Giehl <stefan@matomo.org>2020-05-17 23:39:32 +0300
committerGitHub <noreply@github.com>2020-05-17 23:39:32 +0300
commitb6ace0e06c2ef3f8f98ac55feb934ebe0d304107 (patch)
treef257e7b38af89a61c4e15e8aef2a854882676570 /plugins/ExampleLogTables/Dao/CustomUserLog.php
parentd89c2b7fb4b295542204cd5d81c35f79b5c93489 (diff)
Use utf8mb4 character set if possible (#15618)
Diffstat (limited to 'plugins/ExampleLogTables/Dao/CustomUserLog.php')
-rw-r--r--plugins/ExampleLogTables/Dao/CustomUserLog.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ExampleLogTables/Dao/CustomUserLog.php b/plugins/ExampleLogTables/Dao/CustomUserLog.php
index 50f3016301..ecdfd96f6f 100644
--- a/plugins/ExampleLogTables/Dao/CustomUserLog.php
+++ b/plugins/ExampleLogTables/Dao/CustomUserLog.php
@@ -25,7 +25,7 @@ class CustomUserLog
public function install()
{
DbHelper::createTable($this->table, "
- `user_id` VARCHAR(200) NOT NULL,
+ `user_id` VARCHAR(191) NOT NULL,
`gender` VARCHAR(30) NOT NULL,
`group` VARCHAR(30) NOT NULL,
PRIMARY KEY (user_id)");