Neos\Flow\Persistence\Doctrine\Migrations\Version20110824125035::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() != "mysql");
        $this->addSql("RENAME TABLE typo3_typo3_domain_model_domain TO typo3_domain");
        $this->addSql("RENAME TABLE typo3_typo3_domain_model_site TO typo3_site");
        $this->addSql("RENAME TABLE typo3_typo3_domain_model_user TO typo3_user");
        $this->addSql("RENAME TABLE typo3_typo3_domain_model_userpreferences TO typo3_userpreferences");
    }
Version20110824125035