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>2016-10-06 06:22:01 +0300
committermattab <matthieu.aubry@gmail.com>2016-10-06 06:22:01 +0300
commite3643af30924ca4020d6deccf4b87167e6d326a4 (patch)
treedc1a4d7569d99d0f05d5934cf8199a38aebdaf9c
parentedd09b497216926e49e57d2caa5093970530230a (diff)
Mark the 3.0.0 upgrade as a major DB upgrade
-rw-r--r--core/Updates/3.0.0-b2.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/core/Updates/3.0.0-b2.php b/core/Updates/3.0.0-b2.php
new file mode 100644
index 0000000000..17c0fce85b
--- /dev/null
+++ b/core/Updates/3.0.0-b2.php
@@ -0,0 +1,24 @@
+<?php
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
+
+namespace Piwik\Updates;
+
+use Piwik\Db;
+use Piwik\Plugins\Dashboard;
+use Piwik\Updater;
+use Piwik\Updater\Migration;
+use Piwik\Updates;
+
+class Updates_3_0_0_b2 extends Updates
+{
+ public static function isMajorUpdate()
+ {
+ return true;
+ }
+}