mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
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>
This commit is contained in:
parent
ca54166e35
commit
f5c63d7a6e
1 changed files with 2 additions and 1 deletions
|
|
@ -457,7 +457,8 @@ class MigrationService {
|
|||
|
||||
if ($toSchema instanceof SchemaWrapper) {
|
||||
$targetSchema = $toSchema->getWrappedSchema();
|
||||
$this->ensureOracleIdentifierLengthLimit($targetSchema, strlen($this->connection->getPrefix()));
|
||||
// TODO re-enable once stable14 is branched of: https://github.com/nextcloud/server/issues/10518
|
||||
// $this->ensureOracleIdentifierLengthLimit($targetSchema, strlen($this->connection->getPrefix()));
|
||||
$this->connection->migrateToSchema($targetSchema);
|
||||
$toSchema->performDropTableCalls();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue