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

37 lines
829 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_1_4_rc1 extends Updates
{
public function getMigrationQueries(Updater $updater)
{
return array(
'UPDATE `' . Common::prefixTable('pdf') . '`
SET format = "pdf"' => '42S22',
'ALTER TABLE `' . Common::prefixTable('pdf') . '`
ADD COLUMN `format` VARCHAR(10)' => '42S22',
);
}
public function doUpdate(Updater $updater)
{
try {
$updater->executeMigrationQueries(__FILE__, $this->getMigrationQueries($updater));
} catch (\Exception $e) {
}
}
}