aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/appinfo/update.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/appinfo/update.php')
-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();
-}