diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-12-07 14:44:23 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-12-07 14:44:23 +0100 |
commit | e4c31b362ec724f83cd2fb0205ea4321496d8d0c (patch) | |
tree | c0ed083ff355ab42e2c2aa1020c48c7a54a6e4f6 /core/register_command.php | |
parent | 4dd84b3627d5667b61638363244621ad93a5632f (diff) | |
download | nextcloud-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.php | 1 |
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()); |