diff options
author | Joas Schilling <coding@schilljs.com> | 2017-06-02 14:37:57 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-07-05 13:01:19 +0200 |
commit | 8c39e66619852b8f2e4a9ca5a210970c6c2c619b (patch) | |
tree | d29beff36425117de617564c58f55947444d5929 /core/register_command.php | |
parent | 2875b79c614b40836b13e94f47805ba9f9f1bc65 (diff) | |
download | nextcloud-server-8c39e66619852b8f2e4a9ca5a210970c6c2c619b.tar.gz nextcloud-server-8c39e66619852b8f2e4a9ca5a210970c6c2c619b.zip |
Do not allow to go back on productive systems
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/register_command.php')
-rw-r--r-- | core/register_command.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/register_command.php b/core/register_command.php index 924da6fc94f..bfb1138c5e3 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -88,7 +88,7 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) { $application->add(new OC\Core\Command\Db\Migrations\StatusCommand(\OC::$server->getDatabaseConnection())); $application->add(new OC\Core\Command\Db\Migrations\MigrateCommand(\OC::$server->getDatabaseConnection())); $application->add(new OC\Core\Command\Db\Migrations\GenerateCommand(\OC::$server->getDatabaseConnection())); - $application->add(new OC\Core\Command\Db\Migrations\ExecuteCommand(\OC::$server->getDatabaseConnection())); + $application->add(new OC\Core\Command\Db\Migrations\ExecuteCommand(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig())); $application->add(new OC\Core\Command\Encryption\Disable(\OC::$server->getConfig())); $application->add(new OC\Core\Command\Encryption\Enable(\OC::$server->getConfig(), \OC::$server->getEncryptionManager())); |