diff options
author | Joas Schilling <coding@schilljs.com> | 2020-03-11 12:29:52 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2020-03-31 10:51:15 +0200 |
commit | 720dc4e93d83d738861c614745f514cc347ef1f9 (patch) | |
tree | 841e5f1c095df5c24f82f134afac9ddad721a044 /core/register_command.php | |
parent | 0faed106d7b0b4868ebcd897469d106d76081800 (diff) | |
download | nextcloud-server-720dc4e93d83d738861c614745f514cc347ef1f9.tar.gz nextcloud-server-720dc4e93d83d738861c614745f514cc347ef1f9.zip |
Add optional column oc_comments.reference_id
Signed-off-by: Joas Schilling <coding@schilljs.com>
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 efa3146c492..e355d1429c1 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -99,6 +99,7 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) { $application->add(new OC\Core\Command\Db\ConvertMysqlToMB4(\OC::$server->getConfig(), \OC::$server->getDatabaseConnection(), \OC::$server->getURLGenerator(), \OC::$server->getLogger())); $application->add(new OC\Core\Command\Db\ConvertFilecacheBigInt(\OC::$server->getDatabaseConnection())); $application->add(new OC\Core\Command\Db\AddMissingIndices(\OC::$server->getDatabaseConnection(), \OC::$server->getEventDispatcher())); + $application->add(new OC\Core\Command\Db\AddMissingColumns(\OC::$server->getDatabaseConnection(), \OC::$server->getEventDispatcher())); $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(), \OC::$server->getAppManager())); |