Neos\Flow\Persistence\Doctrine\Migrations\Version20120329220342::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");
        $this->addSql("ALTER TABLE typo3_typo3cr_domain_model_contentobjectproxy CHANGE targettype targettype VARCHAR(255) DEFAULT NULL, CHANGE targetid targetid VARCHAR(255) DEFAULT NULL");
        $this->addSql("ALTER TABLE typo3_typo3cr_domain_model_node CHANGE version version INT DEFAULT 1, CHANGE path path VARCHAR(255) DEFAULT NULL, CHANGE parentpath parentpath VARCHAR(255) DEFAULT NULL, CHANGE identifier identifier VARCHAR(255) DEFAULT NULL, CHANGE properties properties LONGTEXT DEFAULT NULL COMMENT '(DC2Type:array)', CHANGE contenttype contenttype VARCHAR(255) DEFAULT NULL, CHANGE removed removed TINYINT(1) DEFAULT NULL, CHANGE hidden hidden TINYINT(1) DEFAULT NULL, CHANGE hiddeninindex hiddeninindex TINYINT(1) DEFAULT NULL, CHANGE accessroles accessroles LONGTEXT DEFAULT NULL COMMENT '(DC2Type:array)'");
        $this->addSql("ALTER TABLE typo3_typo3cr_domain_model_workspace CHANGE name name VARCHAR(255) DEFAULT NULL");
    }
Version20120329220342