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/UserLanguage
parent19d711f9f6167985fd6fed26fa11d8b878778cec (diff)
refs #9231 Make all log_* tables fields NULLable (#10492)
Diffstat (limited to 'plugins/UserLanguage')
-rw-r--r--plugins/UserLanguage/Columns/Language.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserLanguage/Columns/Language.php b/plugins/UserLanguage/Columns/Language.php
index c51a3372ab..fa665ed998 100644
--- a/plugins/UserLanguage/Columns/Language.php
+++ b/plugins/UserLanguage/Columns/Language.php
@@ -18,7 +18,7 @@ use Piwik\Tracker\Visitor;
class Language extends VisitDimension
{
protected $columnName = 'location_browser_lang';
- protected $columnType = 'VARCHAR(20) NOT NULL';
+ protected $columnType = 'VARCHAR(20) NULL';
public function getName()
{