44 lines
942 B
PHP
44 lines
942 B
PHP
<?php
|
|
/**
|
|
* Piwik - free/libre analytics platform
|
|
*
|
|
* @link http://piwik.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*
|
|
*/
|
|
|
|
namespace Piwik\Plugins\Provider;
|
|
|
|
use Piwik\Updater;
|
|
use Piwik\Updates as PiwikUpdates;
|
|
use Piwik\Updater\Migration;
|
|
use Piwik\Updater\Migration\Factory as MigrationFactory;
|
|
|
|
/**
|
|
* Update for version 3.0.0-b1.
|
|
*/
|
|
class Updates_3_0_0_b1 extends PiwikUpdates
|
|
{
|
|
/**
|
|
* @var MigrationFactory
|
|
*/
|
|
private $migration;
|
|
|
|
public function __construct(MigrationFactory $factory)
|
|
{
|
|
$this->migration = $factory;
|
|
}
|
|
|
|
public function getMigrations(Updater $updater)
|
|
{
|
|
return array(
|
|
$this->migration->db->changeColumnType('log_visit', 'location_provider', 'VARCHAR(200) NULL')
|
|
);
|
|
}
|
|
|
|
public function doUpdate(Updater $updater)
|
|
{
|
|
$updater->executeMigrations(__FILE__, $this->getMigrations($updater));
|
|
}
|
|
}
|