diff options
author | Bart Visscher <bartv@thisnet.nl> | 2014-02-11 18:01:41 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2014-02-11 18:01:41 +0100 |
commit | 3abcd13979660309f9a6d672d3dc64a7c6d784ab (patch) | |
tree | 16971a28d01f9f1b9efac53c02c602d50cbd1f48 /core/register_command.php | |
parent | eede20c5acb4135f96f318a4ad0a146dd562861c (diff) | |
download | nextcloud-server-3abcd13979660309f9a6d672d3dc64a7c6d784ab.tar.gz nextcloud-server-3abcd13979660309f9a6d672d3dc64a7c6d784ab.zip |
Allow converting from any db type
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 736953094b1..a3833214c21 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -9,7 +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(OC_Config::getObject())); +$application->add(new OC\Core\Command\Db\ConvertType(OC_Config::getObject())); $application->add(new OC\Core\Command\Upgrade()); $application->add(new OC\Core\Command\Maintenance\SingleUser()); $application->add(new OC\Core\Command\App\Disable()); |