diff --git a/lib/private/DB/MigrationService.php b/lib/private/DB/MigrationService.php index d26337990d..269400c3ba 100644 --- a/lib/private/DB/MigrationService.php +++ b/lib/private/DB/MigrationService.php @@ -547,7 +547,7 @@ class MigrationService { if (!$isUsingDefaultName && \strlen($indexName) > 30) { throw new \InvalidArgumentException('Primary index name on "' . $table->getName() . '" is too long.'); } - if ($isUsingDefaultName && \strlen($table->getName()) > 26) { + if ($isUsingDefaultName && \strlen($table->getName()) - $prefixLength > 23) { throw new \InvalidArgumentException('Primary index name on "' . $table->getName() . '" is too long.'); } }