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:
authormattab <matthieu.aubry@gmail.com>2015-05-27 04:45:21 +0300
committermattab <matthieu.aubry@gmail.com>2015-05-27 04:45:21 +0300
commitb2f5b5489ceca056217fc6663ec6c2c6b052cd42 (patch)
treecdfc2a4e477e4ede5c32373dbe79d52bd5b85354 /plugins/Provider
parent05eec309d84db98b93ec06b11e63c6157471647f (diff)
Remove one `IGNORE` keyword refs #6642
There are still many IGNORE keywords left and we should remove them to be Mysql 5.7 compatible
Diffstat (limited to 'plugins/Provider')
-rw-r--r--plugins/Provider/Provider.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Provider/Provider.php b/plugins/Provider/Provider.php
index 1f2a5fc70d..6792d59a48 100644
--- a/plugins/Provider/Provider.php
+++ b/plugins/Provider/Provider.php
@@ -30,7 +30,7 @@ class Provider extends \Piwik\Plugin
public function install()
{
// add column hostname / hostname ext in the visit table
- $query = "ALTER IGNORE TABLE `" . Common::prefixTable('log_visit') . "` ADD `location_provider` VARCHAR( 100 ) NULL";
+ $query = "ALTER TABLE `" . Common::prefixTable('log_visit') . "` ADD `location_provider` VARCHAR( 100 ) NULL";
// if the column already exist do not throw error. Could be installed twice...
try {