Neos\Flow\Persistence\Doctrine\Migrations\Version20150324210627::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() != "postgresql");
        // If we still have rows containing a Persistence_Object_Identifier in the properties
        // the node migration for the ImageVariants is not yet applied so we have to skip this migration
        // to prevent issues
        $findNonMigratedNodes = $this->connection->query("SELECT * FROM typo3_typo3cr_domain_model_nodedata WHERE properties LIKE '%Persistence_Object_Identifier%'");
        if ($findNonMigratedNodes->rowCount() > 0) {
            $this->abortIf(true, "Stopped the migration as you now have to run a node migration first, and then restart the doctrine:migrate. ./flow node:migrate --version 20141103100401 --confirmation TRUE");
        }
        $jsonFieldType = $this->connection->getDatabasePlatform()->getJsonTypeDeclarationSQL(array());
        if ($this->connection->getWrappedConnection() instanceof \Doctrine\DBAL\Driver\ServerInfoAwareConnection) {
            $version = $this->connection->getWrappedConnection()->getServerVersion();
            if (version_compare($version, '9.4', '>=')) {
                $jsonFieldType = 'jsonb';
            }
        }
        $select = $this->connection->query("SELECT * FROM typo3_typo3cr_domain_model_nodedata WHERE properties LIKE '" . bin2hex('a:') . "%'");
        $nodeData = array();
        while ($result = $select->fetch()) {
            $properties = unserialize(hex2bin(is_resource($result['properties']) ? stream_get_contents($result['properties']) : $result['properties']));
            $dimensionvalues = unserialize(hex2bin(is_resource($result['dimensionvalues']) ? stream_get_contents($result['dimensionvalues']) : $result['dimensionvalues']));
            $accessroles = unserialize(is_resource($result['accessroles']) ? stream_get_contents($result['accessroles']) : $result['accessroles']);
            $nodeData[] = array('persistence_object_identifier' => $result['persistence_object_identifier'], 'properties' => json_encode($properties), 'dimensionvalues' => json_encode($dimensionvalues), 'accessroles' => json_encode($accessroles));
        }
        $this->connection->exec('BEGIN;');
        $this->connection->exec("ALTER TABLE typo3_typo3cr_domain_model_nodedata ADD COLUMN jproperties " . $jsonFieldType . ";");
        $this->connection->exec("ALTER TABLE typo3_typo3cr_domain_model_nodedata ADD COLUMN jdimensionvalues " . $jsonFieldType . ";");
        $this->connection->exec("ALTER TABLE typo3_typo3cr_domain_model_nodedata ADD COLUMN jaccessroles " . $jsonFieldType . ";");
        $update = $this->connection->prepare('UPDATE typo3_typo3cr_domain_model_nodedata SET jproperties = :properties, jdimensionvalues = :dimensionvalues, jaccessroles = :accessroles WHERE persistence_object_identifier = :persistence_object_identifier');
        foreach ($nodeData as $node) {
            $update->execute($node);
        }
        $this->connection->exec('COMMIT;');
        $this->connection->exec("ALTER TABLE typo3_typo3cr_domain_model_nodedata DROP properties;");
        $this->connection->exec("ALTER TABLE typo3_typo3cr_domain_model_nodedata DROP dimensionvalues;");
        $this->connection->exec("ALTER TABLE typo3_typo3cr_domain_model_nodedata DROP accessroles;");
        $this->connection->exec("ALTER TABLE typo3_typo3cr_domain_model_nodedata RENAME jproperties TO properties;");
        $this->connection->exec("COMMENT ON COLUMN typo3_typo3cr_domain_model_nodedata.properties IS '(DC2Type:flow_json_array)';");
        $this->connection->exec("ALTER TABLE typo3_typo3cr_domain_model_nodedata RENAME jdimensionvalues TO dimensionvalues;");
        $this->connection->exec("COMMENT ON COLUMN typo3_typo3cr_domain_model_nodedata.dimensionvalues IS '(DC2Type:json_array)';");
        $this->connection->exec("ALTER TABLE typo3_typo3cr_domain_model_nodedata RENAME jaccessroles TO accessroles;");
        $this->connection->exec("COMMENT ON COLUMN typo3_typo3cr_domain_model_nodedata.accessroles IS '(DC2Type:json_array)';");
    }
Version20150324210627