Skip to content

Commit

Permalink
Change column type for referer_url from text to varchar
Browse files Browse the repository at this point in the history
refs #14535
  • Loading branch information
tsteur authored Sep 3, 2019
1 parent ea18198 commit 69c193c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/Referrers/Columns/ReferrerUrl.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class ReferrerUrl extends Base
{
protected $columnName = 'referer_url';
protected $columnType = 'TEXT NULL';
protected $columnType = 'VARCHAR(65000) NULL';
protected $type = self::TYPE_TEXT;
protected $segmentName = 'referrerUrl';
protected $nameSingular = 'Live_Referrer_URL';
Expand Down

0 comments on commit 69c193c

Please sign in to comment.