Piwik\Updates\Updates_1_8_3_b1::getMigrations PHP Method

getMigrations() public method

public getMigrations ( Updater $updater )
$updater Piwik\Updater
    public function getMigrations(Updater $updater)
    {
        return array($this->migration->db->changeColumnType('site', 'excluded_parameters', 'TEXT NOT NULL'), $this->migration->db->createTable('report', array('idreport' => 'INT(11) NOT NULL AUTO_INCREMENT', 'idsite' => 'INTEGER(11) NOT NULL', 'login' => 'VARCHAR(100) NOT NULL', 'description' => 'VARCHAR(255) NOT NULL', 'period' => 'VARCHAR(10) NOT NULL', 'type' => 'VARCHAR(10) NOT NULL', 'format' => 'VARCHAR(10) NOT NULL', 'reports' => 'TEXT NOT NULL', 'parameters' => 'TEXT NULL', 'ts_created' => 'TIMESTAMP NULL', 'ts_last_sent' => 'TIMESTAMP NULL', 'deleted' => 'tinyint(4) NOT NULL default 0'), $primaryKey = 'idreport'));
    }