From 183b1dbde3b5586e3bae0073f6f9c40414e7c6a6 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 2 Jun 2017 13:22:25 +0200 Subject: Use migrations when there is no database.xml Signed-off-by: Joas Schilling --- lib/private/Installer.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/private/Installer.php') diff --git a/lib/private/Installer.php b/lib/private/Installer.php index 35f51b19b07..87cb262c966 100644 --- a/lib/private/Installer.php +++ b/lib/private/Installer.php @@ -139,6 +139,9 @@ class Installer { } else { OC_DB::updateDbFromStructure($basedir.'/appinfo/database.xml'); } + } else { + $ms = new \OC\DB\MigrationService($info['id'], \OC::$server->getDatabaseConnection()); + $ms->migrate(); } \OC_App::registerAutoloading($appId, $basedir); @@ -540,6 +543,9 @@ class Installer { 0, $e ); } + } else { + $ms = new \OC\DB\MigrationService($app, \OC::$server->getDatabaseConnection()); + $ms->migrate(); } //run appinfo/install.php -- cgit v1.2.3