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:
authorThomas Steur <tsteur@users.noreply.github.com>2017-10-05 04:30:36 +0300
committerGitHub <noreply@github.com>2017-10-05 04:30:36 +0300
commit5362d989837335d93364c73d76d24ee86a6979d2 (patch)
treef1cb97a4a510103cb59367d50db3fc3c477b1728 /plugins/CoreHome/Tracker
parent06a581adbc5324da39d347cb5661761565129298 (diff)
parent3dd82c29ab6f79707b056b5ca5f8665392cd75b2 (diff)
Merge pull request #12152 from piwik/actionlogtableprimary
Fix action log table was not defining primary key anymore
Diffstat (limited to 'plugins/CoreHome/Tracker')
-rw-r--r--plugins/CoreHome/Tracker/LogTable/Action.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/CoreHome/Tracker/LogTable/Action.php b/plugins/CoreHome/Tracker/LogTable/Action.php
index 66f1d1fd81..c211f0dffd 100644
--- a/plugins/CoreHome/Tracker/LogTable/Action.php
+++ b/plugins/CoreHome/Tracker/LogTable/Action.php
@@ -32,4 +32,8 @@ class Action extends LogTable
return 'log_link_visit_action';
}
+ public function getPrimaryKey()
+ {
+ return 'idaction';
+ }
}