diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-07-25 16:57:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-25 16:57:13 +0200 |
commit | 68c4fc25069b580062752a6f55e47d91be57efae (patch) | |
tree | 0f18f14cfbc555e3e6d4ae38188ce40024a78b12 /lib/private/Setup.php | |
parent | 8d751ff2b429380af7e5c870844a6a32f82f0741 (diff) | |
parent | d254797f561b0f7a2f3feeaa8bb868ad2d3c74be (diff) | |
download | nextcloud-server-68c4fc25069b580062752a6f55e47d91be57efae.tar.gz nextcloud-server-68c4fc25069b580062752a6f55e47d91be57efae.zip |
Merge pull request #5772 from nextcloud/migrations-install
Install nextcloud via migrations instead of the db_structure.xml
Diffstat (limited to 'lib/private/Setup.php')
-rw-r--r-- | lib/private/Setup.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/private/Setup.php b/lib/private/Setup.php index 5cd3c84ce92..f5bfca604a9 100644 --- a/lib/private/Setup.php +++ b/lib/private/Setup.php @@ -282,8 +282,7 @@ class Setup { $class = self::$dbSetupClasses[$dbType]; /** @var \OC\Setup\AbstractDatabase $dbSetup */ - $dbSetup = new $class($l, 'db_structure.xml', $this->config, - $this->logger, $this->random); + $dbSetup = new $class($l, $this->config, $this->logger, $this->random); $error = array_merge($error, $dbSetup->validate($options)); // validate the data directory |