aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2025-03-24 18:07:03 +0100
committerGitHub <noreply@github.com>2025-03-24 18:07:03 +0100
commitf4c749340390c3b87f32c4ab970b717b3bc5ece2 (patch)
tree95494425c64ed0cad5f138a905925f5d21c49ec2
parent98d731d6c9660e370ceb9962fad2cab1730317df (diff)
downloadnextcloud-server-chore/support-longer-names.tar.gz
nextcloud-server-chore/support-longer-names.zip
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
-rw-r--r--lib/private/DB/MigrationService.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/DB/MigrationService.php b/lib/private/DB/MigrationService.php
index a05d9b4513d..8471cc48b44 100644
--- a/lib/private/DB/MigrationService.php
+++ b/lib/private/DB/MigrationService.php
@@ -513,7 +513,7 @@ class MigrationService {
$this->ensureUniqueNamesConstraints($targetSchema, $schemaOnly);
$this->ensureNamingConstraints($sourceSchema, $targetSchema, \strlen($this->connection->getPrefix()));
if ($this->checkOracle) {
- $this->ensureOracleConstraints($sourceSchema, $targetSchema, strlen($this->connection->getPrefix()));
+ $this->ensureOracleConstraints($sourceSchema, $targetSchema));
}
$this->connection->migrateToSchema($targetSchema);
$toSchema->performDropTableCalls();