Neos\Flow\Persistence\Doctrine\Migrations\Version20110928114048::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("ALTER TABLE typo3_typo3cr_domain_model_node DROP version");
        $this->addSql("ALTER TABLE typo3_typo3cr_domain_model_node DROP parentpath");
        $this->addSql("ALTER TABLE typo3_typo3cr_domain_model_node CHANGE sortingindex sorting_index VARCHAR(255) DEFAULT NULL");
        $this->addSql("ALTER TABLE typo3_typo3cr_domain_model_node ADD depth INT DEFAULT NULL");
    }
Version20110928114048