questlab/www/analytics/core/Updates/0.2.13.php
2016-04-10 18:55:57 +02:00

38 lines
868 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\Updates;
use Piwik\Common;
use Piwik\Updater;
use Piwik\Updates;
/**
*/
class Updates_0_2_13 extends Updates
{
public function getMigrationQueries(Updater $updater)
{
return array(
'DROP TABLE IF EXISTS `' . Common::prefixTable('option') . '`' => false,
'CREATE TABLE `' . Common::prefixTable('option') . "` (
option_name VARCHAR( 64 ) NOT NULL ,
option_value LONGTEXT NOT NULL ,
autoload TINYINT NOT NULL DEFAULT '1',
PRIMARY KEY ( option_name )
)" => 1050,
);
}
public function doUpdate(Updater $updater)
{
$updater->executeMigrationQueries(__FILE__, $this->getMigrationQueries($updater));
}
}