-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change mysql column type for new installs for log_action.name and log…
…_conversion.url (#14848)
- Loading branch information
Showing
2 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?php | ||
/** | ||
* Piwik - free/libre analytics platform | ||
* | ||
* @link https://matomo.org | ||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later | ||
* | ||
*/ | ||
|
||
namespace Piwik\Updates; | ||
|
||
use Piwik\Updater; | ||
use Piwik\Updates as PiwikUpdates; | ||
use Piwik\Updater\Migration; | ||
use Piwik\Updater\Migration\Factory as MigrationFactory; | ||
|
||
/** | ||
* Update for version 4.0.0-b1. | ||
*/ | ||
class Updates_4_0_0_b1 extends PiwikUpdates | ||
{ | ||
/** | ||
* @var MigrationFactory | ||
*/ | ||
private $migration; | ||
|
||
public function __construct(MigrationFactory $factory) | ||
{ | ||
$this->migration = $factory; | ||
} | ||
|
||
public function getMigrations(Updater $updater) | ||
{ | ||
$migration1 = $this->migration->db->changeColumnType('log_action', 'name', 'VARCHAR(65000)'); | ||
$migration2 = $this->migration->db->changeColumnType('log_conversion', 'url', 'VARCHAR(65000) NOT NULL'); | ||
|
||
return array( | ||
$migration1, | ||
$migration2, | ||
); | ||
} | ||
|
||
public function doUpdate(Updater $updater) | ||
{ | ||
$updater->executeMigrations(__FILE__, $this->getMigrations($updater)); | ||
} | ||
} |