From 8df5a5966b8cc8c08aca20fb2799aeea04f3f665 Mon Sep 17 00:00:00 2001 From: Akhil Date: Mon, 28 Nov 2022 22:03:38 +0530 Subject: [PATCH] Update index name as it is too large Signed-off-by: Akhil --- apps/dav/lib/Migration/Version1025Date20221114151721.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dav/lib/Migration/Version1025Date20221114151721.php b/apps/dav/lib/Migration/Version1025Date20221114151721.php index 110b5475261a1..38f2b18040aa7 100644 --- a/apps/dav/lib/Migration/Version1025Date20221114151721.php +++ b/apps/dav/lib/Migration/Version1025Date20221114151721.php @@ -34,7 +34,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $calendarObjectsTable = $schema->getTable('calendarobjects'); - $calendarObjectsTable->addIndex(['classification'], 'calendarobject_classification_index'); + $calendarObjectsTable->addIndex(['classification'], 'calobj_clssfction_index'); return $schema; }