Neos\Flow\Persistence\Doctrine\Migrations\Version20121001202223::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");
        // collect foreign keys pointing to "our" tables
        $tableNames = array('typo3_typo3_domain_model_domain', 'typo3_typo3_domain_model_site', 'typo3_typo3_domain_model_user', 'typo3_typo3_domain_model_userpreferences');
        $foreignKeyHandlingSql = Service::getForeignKeyHandlingSql($schema, $this->platform, $tableNames, 'flow3_persistence_identifier', 'persistence_object_identifier');
        // drop FK constraints
        foreach ($foreignKeyHandlingSql['drop'] as $sql) {
            $this->addSql($sql);
        }
        // rename identifier fields
        $this->addSql("ALTER TABLE typo3_typo3_domain_model_domain DROP PRIMARY KEY");
        $this->addSql("ALTER TABLE typo3_typo3_domain_model_domain CHANGE flow3_persistence_identifier persistence_object_identifier VARCHAR(40) NOT NULL");
        $this->addSql("ALTER TABLE typo3_typo3_domain_model_domain ADD PRIMARY KEY (persistence_object_identifier)");
        $this->addSql("ALTER TABLE typo3_typo3_domain_model_site DROP PRIMARY KEY");
        $this->addSql("ALTER TABLE typo3_typo3_domain_model_site CHANGE flow3_persistence_identifier persistence_object_identifier VARCHAR(40) NOT NULL");
        $this->addSql("ALTER TABLE typo3_typo3_domain_model_site ADD PRIMARY KEY (persistence_object_identifier)");
        $this->addSql("ALTER TABLE typo3_typo3_domain_model_user DROP PRIMARY KEY");
        $this->addSql("ALTER TABLE typo3_typo3_domain_model_user CHANGE flow3_persistence_identifier persistence_object_identifier VARCHAR(40) NOT NULL");
        $this->addSql("ALTER TABLE typo3_typo3_domain_model_user ADD PRIMARY KEY (persistence_object_identifier)");
        $this->addSql("ALTER TABLE typo3_typo3_domain_model_userpreferences DROP PRIMARY KEY");
        $this->addSql("ALTER TABLE typo3_typo3_domain_model_userpreferences CHANGE flow3_persistence_identifier persistence_object_identifier VARCHAR(40) NOT NULL");
        $this->addSql("ALTER TABLE typo3_typo3_domain_model_userpreferences ADD PRIMARY KEY (persistence_object_identifier)");
        // add back FK constraints
        foreach ($foreignKeyHandlingSql['add'] as $sql) {
            $this->addSql($sql);
        }
    }
Version20121001202223