From 059968e1c705f5b06cd6049f1a7ad05a123f5500 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 5 Dec 2019 14:38:28 +0100 Subject: Pick a shorter name for the transfer ownership table Signed-off-by: Joas Schilling Signed-off-by: Roeland Jago Douma --- lib/private/DB/MigrationService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/private/DB/MigrationService.php') diff --git a/lib/private/DB/MigrationService.php b/lib/private/DB/MigrationService.php index 71f81d3b1da..9f5b5bfe72b 100644 --- a/lib/private/DB/MigrationService.php +++ b/lib/private/DB/MigrationService.php @@ -550,7 +550,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()) - $prefixLength > 23) { + if ($isUsingDefaultName && \strlen($table->getName()) - $prefixLength >= 23) { throw new \InvalidArgumentException('Primary index name on "' . $table->getName() . '" is too long.'); } } -- cgit v1.2.3