Neos\Flow\Persistence\Doctrine\Migrations\Version20150623112200::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("ALTER TABLE typo3_typo3cr_domain_model_workspace ADD title VARCHAR(255) NOT NULL, ADD description TEXT DEFAULT NULL");
        $this->addSql("UPDATE typo3_typo3cr_domain_model_workspace SET title=name WHERE title=''");
    }
Version20150623112200