Neos\Flow\Persistence\Doctrine\Migrations\Version20161125093820::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() != 'mysql', 'Migration can only be executed safely on "mysql".');
        $this->addSql('RENAME TABLE neos_contentrepository_domain_model_contentobjectproxy TO typo3_typo3cr_domain_model_contentobjectproxy');
        $this->addSql('RENAME TABLE neos_contentrepository_domain_model_nodedata TO typo3_typo3cr_domain_model_nodedata');
        $this->addSql('RENAME TABLE neos_contentrepository_domain_model_nodedimension TO typo3_typo3cr_domain_model_nodedimension');
        $this->addSql('RENAME TABLE neos_contentrepository_domain_model_workspace TO typo3_typo3cr_domain_model_workspace');
        $this->addSql('RENAME TABLE neos_contentrepository_migration_domain_model_migrationstatus TO typo3_typo3cr_migration_domain_model_migrationstatus');
    }
Version20161125093820