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>2016-09-20 07:14:22 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2016-09-20 07:14:22 +0300
commit77746d08c5d6e469632221a74da4530beb20d678 (patch)
tree7853814005d64a76f91cd98ea09b2bf428456275 /plugins/ExampleTracker
parent19d711f9f6167985fd6fed26fa11d8b878778cec (diff)
refs #9231 Make all log_* tables fields NULLable (#10492)
Diffstat (limited to 'plugins/ExampleTracker')
-rw-r--r--plugins/ExampleTracker/Columns/ExampleConversionDimension.php2
-rw-r--r--plugins/ExampleTracker/Columns/ExampleVisitDimension.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ExampleTracker/Columns/ExampleConversionDimension.php b/plugins/ExampleTracker/Columns/ExampleConversionDimension.php
index ea780abbd3..6b6bf3d51f 100644
--- a/plugins/ExampleTracker/Columns/ExampleConversionDimension.php
+++ b/plugins/ExampleTracker/Columns/ExampleConversionDimension.php
@@ -40,7 +40,7 @@ class ExampleConversionDimension extends ConversionDimension
* perform an update which can sometimes take a long time so be careful when choosing the correct column type.
* @var string
*/
- protected $columnType = 'INTEGER(11) DEFAULT 0 NOT NULL';
+ protected $columnType = 'INTEGER(11) DEFAULT 0 NULL';
/**
* The name of the dimension which will be visible for instance in the UI of a related report and in the mobile app.
diff --git a/plugins/ExampleTracker/Columns/ExampleVisitDimension.php b/plugins/ExampleTracker/Columns/ExampleVisitDimension.php
index f0d28b66da..15d32592a6 100644
--- a/plugins/ExampleTracker/Columns/ExampleVisitDimension.php
+++ b/plugins/ExampleTracker/Columns/ExampleVisitDimension.php
@@ -38,7 +38,7 @@ class ExampleVisitDimension extends VisitDimension
* perform an update which can sometimes take a long time so be careful when choosing the correct column type.
* @var string
*/
- protected $columnType = 'INTEGER(11) DEFAULT 0 NOT NULL';
+ protected $columnType = 'INTEGER(11) DEFAULT 0 NULL';
/**
* The name of the dimension which will be visible for instance in the UI of a related report and in the mobile app.