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:
Diffstat (limited to 'core/Db/Schema/Mysql.php')
-rw-r--r--core/Db/Schema/Mysql.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/core/Db/Schema/Mysql.php b/core/Db/Schema/Mysql.php
index c3ce4307c1..f23321be43 100644
--- a/core/Db/Schema/Mysql.php
+++ b/core/Db/Schema/Mysql.php
@@ -233,18 +233,13 @@ class Mysql implements SchemaInterface
idlink_va INTEGER(11) UNSIGNED NOT NULL AUTO_INCREMENT,
idsite int(10) UNSIGNED NOT NULL,
idvisitor BINARY(8) NOT NULL,
- server_time DATETIME NOT NULL,
idvisit INTEGER(10) UNSIGNED NOT NULL,
idaction_url_ref INTEGER(10) UNSIGNED NULL DEFAULT 0,
idaction_name_ref INTEGER(10) UNSIGNED NOT NULL,
- idaction_event_category INTEGER(10) UNSIGNED DEFAULT NULL,
- idaction_event_action INTEGER(10) UNSIGNED DEFAULT NULL,
- time_spent_ref_action INTEGER(10) UNSIGNED NOT NULL,
custom_float FLOAT NULL DEFAULT NULL,
PRIMARY KEY(idlink_va),
- INDEX index_idvisit(idvisit),
- INDEX index_idsite_servertime ( idsite, server_time )
+ INDEX index_idvisit(idvisit)
) ENGINE=$engine DEFAULT CHARSET=utf8
",