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/Actions/Columns
parent19d711f9f6167985fd6fed26fa11d8b878778cec (diff)
refs #9231 Make all log_* tables fields NULLable (#10492)
Diffstat (limited to 'plugins/Actions/Columns')
-rw-r--r--plugins/Actions/Columns/EntryPageTitle.php2
-rw-r--r--plugins/Actions/Columns/EntryPageUrl.php2
-rw-r--r--plugins/Actions/Columns/ExitPageTitle.php2
-rw-r--r--plugins/Actions/Columns/TimeSpentRefAction.php2
-rw-r--r--plugins/Actions/Columns/VisitTotalActions.php2
-rw-r--r--plugins/Actions/Columns/VisitTotalSearches.php2
6 files changed, 6 insertions, 6 deletions
diff --git a/plugins/Actions/Columns/EntryPageTitle.php b/plugins/Actions/Columns/EntryPageTitle.php
index 0da5b2b4ce..72e80f8783 100644
--- a/plugins/Actions/Columns/EntryPageTitle.php
+++ b/plugins/Actions/Columns/EntryPageTitle.php
@@ -18,7 +18,7 @@ use Piwik\Tracker\Visitor;
class EntryPageTitle extends VisitDimension
{
protected $columnName = 'visit_entry_idaction_name';
- protected $columnType = 'INTEGER(11) UNSIGNED NOT NULL';
+ protected $columnType = 'INTEGER(11) UNSIGNED NULL';
protected function configureSegments()
{
diff --git a/plugins/Actions/Columns/EntryPageUrl.php b/plugins/Actions/Columns/EntryPageUrl.php
index 7256105b57..8adf0ab2f6 100644
--- a/plugins/Actions/Columns/EntryPageUrl.php
+++ b/plugins/Actions/Columns/EntryPageUrl.php
@@ -18,7 +18,7 @@ use Piwik\Tracker\Visitor;
class EntryPageUrl extends VisitDimension
{
protected $columnName = 'visit_entry_idaction_url';
- protected $columnType = 'INTEGER(11) UNSIGNED NOT NULL';
+ protected $columnType = 'INTEGER(11) UNSIGNED NULL';
protected function configureSegments()
{
diff --git a/plugins/Actions/Columns/ExitPageTitle.php b/plugins/Actions/Columns/ExitPageTitle.php
index 8078461da2..766897bd32 100644
--- a/plugins/Actions/Columns/ExitPageTitle.php
+++ b/plugins/Actions/Columns/ExitPageTitle.php
@@ -18,7 +18,7 @@ use Piwik\Tracker\Visitor;
class ExitPageTitle extends VisitDimension
{
protected $columnName = 'visit_exit_idaction_name';
- protected $columnType = 'INTEGER(11) UNSIGNED NOT NULL';
+ protected $columnType = 'INTEGER(11) UNSIGNED NULL';
protected function configureSegments()
{
diff --git a/plugins/Actions/Columns/TimeSpentRefAction.php b/plugins/Actions/Columns/TimeSpentRefAction.php
index 1154fd3989..a51cac9d59 100644
--- a/plugins/Actions/Columns/TimeSpentRefAction.php
+++ b/plugins/Actions/Columns/TimeSpentRefAction.php
@@ -16,7 +16,7 @@ use Piwik\Tracker\Visitor;
class TimeSpentRefAction extends ActionDimension
{
protected $columnName = 'time_spent_ref_action';
- protected $columnType = 'INTEGER(10) UNSIGNED NOT NULL';
+ protected $columnType = 'INTEGER(10) UNSIGNED NULL';
public function onNewAction(Request $request, Visitor $visitor, Action $action)
{
diff --git a/plugins/Actions/Columns/VisitTotalActions.php b/plugins/Actions/Columns/VisitTotalActions.php
index 58ac9fdf9c..914f18ba8e 100644
--- a/plugins/Actions/Columns/VisitTotalActions.php
+++ b/plugins/Actions/Columns/VisitTotalActions.php
@@ -18,7 +18,7 @@ use Piwik\Tracker\Visitor;
class VisitTotalActions extends VisitDimension
{
protected $columnName = 'visit_total_actions';
- protected $columnType = 'INT(11) UNSIGNED NOT NULL';
+ protected $columnType = 'INT(11) UNSIGNED NULL';
protected function configureSegments()
{
diff --git a/plugins/Actions/Columns/VisitTotalSearches.php b/plugins/Actions/Columns/VisitTotalSearches.php
index 1b8fba9ffd..e3ebb83247 100644
--- a/plugins/Actions/Columns/VisitTotalSearches.php
+++ b/plugins/Actions/Columns/VisitTotalSearches.php
@@ -18,7 +18,7 @@ use Piwik\Tracker\Visitor;
class VisitTotalSearches extends VisitDimension
{
protected $columnName = 'visit_total_searches';
- protected $columnType = 'SMALLINT(5) UNSIGNED NOT NULL';
+ protected $columnType = 'SMALLINT(5) UNSIGNED NULL';
protected function configureSegments()
{