diff options
author | Joas Schilling <coding@schilljs.com> | 2018-08-06 17:34:40 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-08-06 17:34:40 +0200 |
commit | f5c63d7a6e86fa17e35c552b0807b9014d0dd2e5 (patch) | |
tree | d3b6659dfeaf32f3c74a445daa34392287e9458e /lib/private | |
parent | ca54166e352f4e54887dd307bb10cc60308dbc6a (diff) | |
download | nextcloud-server-f5c63d7a6e86fa17e35c552b0807b9014d0dd2e5.tar.gz nextcloud-server-f5c63d7a6e86fa17e35c552b0807b9014d0dd2e5.zip |
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>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/DB/MigrationService.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/DB/MigrationService.php b/lib/private/DB/MigrationService.php index 412bb61a086..f584cb351d2 100644 --- a/lib/private/DB/MigrationService.php +++ b/lib/private/DB/MigrationService.php @@ -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(); } |