Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-04-12 08:45:19 +0300
committerMorris Jobke <hey@morrisjobke.de>2017-04-12 08:45:19 +0300
commit83864d465e76a948798a407a2e1d69fe974d6f88 (patch)
treea062fe1585f68553efdf5228611784301079c62f /apps/files_external/appinfo
parent6bd1c50dc32ccc208723ef08af72b8bfe99b58bb (diff)
[files_external] Remove unneeded update steps
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files_external/appinfo')
-rw-r--r--apps/files_external/appinfo/update.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/apps/files_external/appinfo/update.php b/apps/files_external/appinfo/update.php
deleted file mode 100644
index 3d173f300e7..00000000000
--- a/apps/files_external/appinfo/update.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-/**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Joas Schilling <coding@schilljs.com>
- * @author Robin Appelman <robin@icewind.nl>
- *
- * @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/>
- *
- */
-
-$installedVersion = \OC::$server->getConfig()->getAppValue('files_external', 'installed_version');
-
-$app = new \OCA\Files_External\AppInfo\Application();
-
-// Migration to db config
-if (version_compare($installedVersion, '0.5.0', '<')) {
- $migrator = $app->getContainer()->query('OCA\Files_External\Migration\StorageMigrator');
- $migrator->migrateGlobal();
-}