diff options
author | Georg Ehrke <developer@georgehrke.com> | 2018-11-05 12:08:41 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-11-13 16:32:47 +0100 |
commit | 071301bfb9445e0df61f62cb48c6b0d2956de27f (patch) | |
tree | 731556853175c5b40c827d0aed6c7fef81ebd07b /apps/dav/lib/Migration/Version1008Date20181105104833.php | |
parent | 3117e996be466c7d4a061d41639562c70f2fc27f (diff) | |
download | nextcloud-server-071301bfb9445e0df61f62cb48c6b0d2956de27f.tar.gz nextcloud-server-071301bfb9445e0df61f62cb48c6b0d2956de27f.zip |
Fix Calendarsubscriptions source column change on Oracle
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'apps/dav/lib/Migration/Version1008Date20181105104833.php')
-rw-r--r-- | apps/dav/lib/Migration/Version1008Date20181105104833.php | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/apps/dav/lib/Migration/Version1008Date20181105104833.php b/apps/dav/lib/Migration/Version1008Date20181105104833.php new file mode 100644 index 00000000000..9167fa0463b --- /dev/null +++ b/apps/dav/lib/Migration/Version1008Date20181105104833.php @@ -0,0 +1,49 @@ +<?php +/** + * @copyright Copyright (c) 2018 Georg Ehrke + * + * @author Georg Ehrke <oc.list@georgehrke.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * 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 + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +declare(strict_types=1); + +namespace OCA\DAV\Migration; + +use Closure; +use OCP\DB\ISchemaWrapper; +use OCP\Migration\SimpleMigrationStep; +use OCP\Migration\IOutput; + +class Version1008Date20181105104833 extends SimpleMigrationStep { + + /** + * @param IOutput $output + * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` + * @param array $options + * @return null|ISchemaWrapper + */ + public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) { + /** @var ISchemaWrapper $schema */ + $schema = $schemaClosure(); + $table = $schema->getTable('calendarsubscriptions'); + $table->dropColumn('source'); + + return $schema; + } +} |