summaryrefslogtreecommitdiffstats
path: root/core/register_command.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-12-07 14:44:23 +0100
committerBart Visscher <bartv@thisnet.nl>2013-12-07 14:44:23 +0100
commite4c31b362ec724f83cd2fb0205ea4321496d8d0c (patch)
treec0ed083ff355ab42e2c2aa1020c48c7a54a6e4f6 /core/register_command.php
parent4dd84b3627d5667b61638363244621ad93a5632f (diff)
downloadnextcloud-server-e4c31b362ec724f83cd2fb0205ea4321496d8d0c.tar.gz
nextcloud-server-e4c31b362ec724f83cd2fb0205ea4321496d8d0c.zip
Add command for converting sqlite database to server based one
Diffstat (limited to 'core/register_command.php')
-rw-r--r--core/register_command.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/register_command.php b/core/register_command.php
index e4f3b124365..419747ebb44 100644
--- a/core/register_command.php
+++ b/core/register_command.php
@@ -9,6 +9,7 @@
/** @var $application Symfony\Component\Console\Application */
$application->add(new OC\Core\Command\Status);
$application->add(new OC\Core\Command\Db\GenerateChangeScript());
+$application->add(new OC\Core\Command\Db\ConvertFromSqlite());
$application->add(new OC\Core\Command\Upgrade());
$application->add(new OC\Core\Command\Maintenance\SingleUser());
$application->add(new OC\Core\Command\App\Disable());