Neos\Flow\Persistence\Doctrine\Migrations\Version20130730151320::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");
        $this->addSql("ALTER TABLE typo3_typo3cr_domain_model_nodedata ALTER properties TYPE text USING ENCODE(properties, 'escape')");
        $this->addSql("COMMENT ON COLUMN typo3_typo3cr_domain_model_nodedata.properties IS '(DC2Type:array)'");
    }
Version20130730151320