diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-17 12:51:30 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-17 12:51:30 +0200 |
commit | 6e1881dbe42dbd7f3c7c2afdc446fe6fc5d46e87 (patch) | |
tree | 0811cfbff6d3461b6b0748ebc4f109a668e7701b /core/register_command.php | |
parent | fe1df961c14079313ff7fed591283e0b9e199f38 (diff) | |
download | nextcloud-server-6e1881dbe42dbd7f3c7c2afdc446fe6fc5d46e87.tar.gz nextcloud-server-6e1881dbe42dbd7f3c7c2afdc446fe6fc5d46e87.zip |
new console command to generate sql migration scripts
Diffstat (limited to 'core/register_command.php')
-rw-r--r-- | core/register_command.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/register_command.php b/core/register_command.php index 1eed347b7b5..683e7ae1833 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -6,4 +6,6 @@ * See the COPYING-README file. */ +/** @var $application Symfony\Component\Console\Application */ $application->add(new OC\Core\Command\Status); +$application->add(new OC\Core\Command\Db\GenerateChangeScript()); |