Merge pull request #15312 from nextcloud/backport/15289/stable16
[stable16] Remove the custom prefix from the table name length when checking on …
This commit is contained in:
commit
755543879b
|
@ -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.');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue