Neos\Flow\Persistence\Doctrine\Migrations\Version20150408112832::up PHP 메소드

up() 공개 메소드

public up ( Doctrine\DBAL\Schema\Schema $schema ) : void
$schema Doctrine\DBAL\Schema\Schema
리턴 void
    public function up(Schema $schema)
    {
        $this->abortIf($this->connection->getDatabasePlatform()->getName() != "mysql");
        $this->addSql("UPDATE typo3_typo3cr_domain_model_nodedata SET path = LOWER(path), parentpath = LOWER(parentpath), pathhash = MD5(LOWER(path)), parentpathhash = MD5(LOWER(parentpath))");
    }
Version20150408112832