Piwik\Columns\Updater::doUpdate PHP Method

doUpdate() public method

public doUpdate ( Updater $updater )
$updater Piwik\Updater
    public function doUpdate(PiwikUpdater $updater)
    {
        $updater->executeMigrationQueries(__FILE__, $this->getMigrationQueries($updater));
    }

Usage Example

Example #1
0
 public function test_doUpdate_DoesNotError_WhenDimensionsAlreadyInTables()
 {
     $this->addDimensionsToTables();
     $updater = $this->getMockUpdater();
     $this->columnsUpdater->doUpdate($updater);
     $this->assertDimensionsAddedToTables();
 }