summaryrefslogtreecommitdiffstats
path: root/apps/files_external/appinfo
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-04-12 10:16:42 +0200
committerGitHub <noreply@github.com>2017-04-12 10:16:42 +0200
commit39468f627fd6217199c0cc05b4fa248b14046079 (patch)
tree8f0b96affc01f7fad38024797a0e0dab5440f7ac /apps/files_external/appinfo
parentb5d31e4e6511b713e7c9dd340ac2ab1c2a035b1a (diff)
parent83864d465e76a948798a407a2e1d69fe974d6f88 (diff)
downloadnextcloud-server-39468f627fd6217199c0cc05b4fa248b14046079.tar.gz
nextcloud-server-39468f627fd6217199c0cc05b4fa248b14046079.zip
Merge pull request #4315 from nextcloud/cleanup-files_external-update
[files_external] Remove unneeded update steps
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();
-}