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
|
@ -457,7 +457,8 @@ class MigrationService {
|
||||||
|
|
||||||
if ($toSchema instanceof SchemaWrapper) {
|
if ($toSchema instanceof SchemaWrapper) {
|
||||||
$targetSchema = $toSchema->getWrappedSchema();
|
$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);
|
$this->connection->migrateToSchema($targetSchema);
|
||||||
$toSchema->performDropTableCalls();
|
$toSchema->performDropTableCalls();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue