summaryrefslogtreecommitdiffstats
path: root/core/Migrations/Version20000Date20201109081915.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-11-10 09:33:29 +0100
committerJoas Schilling <coding@schilljs.com>2020-11-10 15:36:27 +0100
commit5b5aebbf66e7559aac73eb82b236b052b6a1ae3e (patch)
tree471748128c3294eee531a7f1c94dff976af6c8b4 /core/Migrations/Version20000Date20201109081915.php
parentfbda2d1d253b99a4e83970e023ede42faad87966 (diff)
downloadnextcloud-server-5b5aebbf66e7559aac73eb82b236b052b6a1ae3e.tar.gz
nextcloud-server-5b5aebbf66e7559aac73eb82b236b052b6a1ae3e.zip
Replace the credentials table with one that can have empty user
Primary key columns on Oracle can not have empty strings Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/Migrations/Version20000Date20201109081915.php')
-rw-r--r--core/Migrations/Version20000Date20201109081915.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Migrations/Version20000Date20201109081915.php b/core/Migrations/Version20000Date20201109081915.php
index 720f54d8e8b..d19c9ca0bb2 100644
--- a/core/Migrations/Version20000Date20201109081915.php
+++ b/core/Migrations/Version20000Date20201109081915.php
@@ -43,7 +43,7 @@ class Version20000Date20201109081915 extends SimpleMigrationStep {
$result = $this->ensureColumnIsNullable($schema, 'share', 'password_by_talk');
$result = $this->ensureColumnIsNullable($schema, 'share', 'hide_download') || $result;
- $result = $this->ensureColumnIsNullable($schema, 'credentials', 'user') || $result;
+// $result = $this->ensureColumnIsNullable($schema, 'credentials', 'user') || $result;
$result = $this->ensureColumnIsNullable($schema, 'authtoken', 'password_invalid') || $result;
$result = $this->ensureColumnIsNullable($schema, 'collres_accesscache', 'access') || $result;