owncloud/core

View on GitHub
apps/dav/appinfo/Migrations/Version20170927201245.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * @author Viktar Dubiniuk <dubiniuk@owncloud.com>
 *
 * @copyright Copyright (c) 2018, ownCloud GmbH
 * @license AGPL-3.0
 *
 * This code is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License, version 3,
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License, version 3,
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
 *
 */

namespace OCA\DAV\Migrations;

use Doctrine\DBAL\Schema\Schema;
use Doctrine\DBAL\Types\Type;
use OCP\Migration\ISchemaMigration;

/*
 * Create dav_properties table that stores properties
 * of non-fs items (calendar/contacts) by path
 */

class Version20170927201245 implements ISchemaMigration {
    /**
     * @param Schema $schema
     * @param array $options
     */
    public function changeSchema(Schema $schema, array $options) {
        $prefix = $options['tablePrefix'];
        if (!$schema->hasTable("{$prefix}dav_properties")) {
            $table = $schema->createTable("{$prefix}dav_properties");
            $table->addColumn('id', Type::BIGINT, [
                'autoincrement' => true,
                'notnull' => true,
                'length' => 20,
            ]);
            $table->addColumn('propertypath', Type::STRING, [
                'notnull' => true,
                'length' => 255,
                'default' => '',
            ]);
            $table->addColumn('propertyname', Type::STRING, [
                'notnull' => true,
                'length' => 255,
                'default' => '',
            ]);
            $table->addColumn('propertyvalue', Type::STRING, [
                'notnull' => true,
                'length' => 255,
            ]);
            $table->setPrimaryKey(['id']);
            $table->addIndex(['propertypath'], 'propertypath_index');
        }
    }
}