Neos\Flow\Persistence\Doctrine\Migrations\Version20161125093820::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', 'Migration can only be executed safely on "mysql".');
        $this->addSql('RENAME TABLE typo3_typo3cr_domain_model_contentobjectproxy TO neos_contentrepository_domain_model_contentobjectproxy');
        $this->addSql('RENAME TABLE typo3_typo3cr_domain_model_nodedata TO neos_contentrepository_domain_model_nodedata');
        $this->addSql('RENAME TABLE typo3_typo3cr_domain_model_nodedimension TO neos_contentrepository_domain_model_nodedimension');
        $this->addSql('RENAME TABLE typo3_typo3cr_domain_model_workspace TO neos_contentrepository_domain_model_workspace');
        $this->addSql('RENAME TABLE typo3_typo3cr_migration_domain_model_migrationstatus TO neos_contentrepository_migration_domain_model_migrationstatus');
    }
Version20161125093820