Skip to content

Commit f5c63d7

Browse files
committed
Disable Oracle enforcement for now until the following issues are solved:
* Only apps should be checked which say they support oracle * Only check newly added items, to allow forward migration from an existing database structure Signed-off-by: Joas Schilling <coding@schilljs.com>
1 parent ca54166 commit f5c63d7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/private/DB/MigrationService.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,8 @@ public function executeStep($version, $schemaOnly = false) {
457457

458458
if ($toSchema instanceof SchemaWrapper) {
459459
$targetSchema = $toSchema->getWrappedSchema();
460-
$this->ensureOracleIdentifierLengthLimit($targetSchema, strlen($this->connection->getPrefix()));
460+
// TODO re-enable once stable14 is branched of: https://github.com/nextcloud/server/issues/10518
461+
// $this->ensureOracleIdentifierLengthLimit($targetSchema, strlen($this->connection->getPrefix()));
461462
$this->connection->migrateToSchema($targetSchema);
462463
$toSchema->performDropTableCalls();
463464
}

0 commit comments

Comments
 (0)