diff options
author | Joas Schilling <coding@schilljs.com> | 2018-05-03 16:52:56 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-05-03 16:52:56 +0200 |
commit | f772b7b4dd408061c8b1151331b9efc6e2e7b96c (patch) | |
tree | 46dfb6d7abc06271399db6d2e7550da77cdf305a /core/register_command.php | |
parent | dfe6d65410ba2f8ae671a7f75764639533c8c068 (diff) | |
download | nextcloud-server-f772b7b4dd408061c8b1151331b9efc6e2e7b96c.tar.gz nextcloud-server-f772b7b4dd408061c8b1151331b9efc6e2e7b96c.zip |
Add autocomplete to migration commands
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/register_command.php')
-rw-r--r-- | core/register_command.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/register_command.php b/core/register_command.php index 578b4f799b6..93a36c415ee 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -92,9 +92,9 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) { $application->add(new OC\Core\Command\Db\AddMissingIndices(\OC::$server->getDatabaseConnection())); $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\GenerateCommand(\OC::$server->getDatabaseConnection(), \OC::$server->getAppManager())); $application->add(new OC\Core\Command\Db\Migrations\GenerateFromSchemaFileCommand(\OC::$server->getConfig(), \OC::$server->getAppManager(), \OC::$server->getDatabaseConnection())); - $application->add(new OC\Core\Command\Db\Migrations\ExecuteCommand(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig())); + $application->add(new OC\Core\Command\Db\Migrations\ExecuteCommand(\OC::$server->getDatabaseConnection(), \OC::$server->getAppManager(), \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())); |