From: Joas Schilling Date: Wed, 13 Dec 2023 12:38:31 +0000 (+0100) Subject: fix(comments): Reference ID column is now added on upgrade and therefore can be removed X-Git-Tag: v29.0.0beta1~640^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F42209%2Fhead;p=nextcloud-server.git fix(comments): Reference ID column is now added on upgrade and therefore can be removed Signed-off-by: Joas Schilling --- diff --git a/core/Application.php b/core/Application.php index 2ad8b9f2a30..700fb3297af 100644 --- a/core/Application.php +++ b/core/Application.php @@ -48,10 +48,8 @@ use OC\TagManager; use OCP\AppFramework\App; use OCP\AppFramework\Http\Events\BeforeLoginTemplateRenderedEvent; use OCP\AppFramework\Http\Events\BeforeTemplateRenderedEvent; -use OCP\DB\Events\AddMissingColumnsEvent; use OCP\DB\Events\AddMissingIndicesEvent; use OCP\DB\Events\AddMissingPrimaryKeyEvent; -use OCP\DB\Types; use OCP\EventDispatcher\IEventDispatcher; use OCP\User\Events\BeforeUserDeletedEvent; use OCP\User\Events\UserDeletedEvent; @@ -300,18 +298,6 @@ class Application extends App { ); }); - $eventDispatcher->addListener(AddMissingColumnsEvent::class, function (AddMissingColumnsEvent $event) { - $event->addMissingColumn( - 'comments', - 'reference_id', - Types::STRING, - [ - 'notnull' => false, - 'length' => 64, - ] - ); - }); - $eventDispatcher->addServiceListener(BeforeTemplateRenderedEvent::class, BeforeTemplateRenderedListener::class); $eventDispatcher->addServiceListener(BeforeLoginTemplateRenderedEvent::class, BeforeTemplateRenderedListener::class); $eventDispatcher->addServiceListener(RemoteWipeStarted::class, RemoteWipeActivityListener::class);