Neos\Flow\Persistence\Doctrine\Migrations\Version20161125093821::down PHP Метод

down() публичный Метод

public down ( Doctrine\DBAL\Schema\Schema $schema ) : void
$schema Doctrine\DBAL\Schema\Schema
Результат 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 neos_contentrepository_domain_model_contentobjectproxy RENAME TO typo3_typo3cr_domain_model_contentobjectproxy');
        $this->addSql('ALTER TABLE neos_contentrepository_domain_model_nodedata RENAME TO typo3_typo3cr_domain_model_nodedata');
        $this->addSql('ALTER TABLE neos_contentrepository_domain_model_nodedimension RENAME TO typo3_typo3cr_domain_model_nodedimension');
        $this->addSql('ALTER TABLE neos_contentrepository_domain_model_workspace RENAME TO typo3_typo3cr_domain_model_workspace');
        $this->addSql('ALTER TABLE neos_contentrepository_migration_domain_model_migrationstatus RENAME TO typo3_typo3cr_migration_domain_model_migrationstatus');
    }
Version20161125093821