Neos\Flow\Persistence\Doctrine\Migrations\Version20161115142023::down PHP Method

down() public method

public down ( Doctrine\DBAL\Schema\Schema $schema ) : void
$schema Doctrine\DBAL\Schema\Schema
return void
    public function down(Schema $schema)
    {
        $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'postgresql', 'Migration can only be executed safely on "postgresql".');
        $this->addSql('ALTER TABLE typo3_flow_resourcemanagement_persistentresource RENAME TO typo3_flow_resource_resource');
    }
Version20161115142023