diff options
author | Joas Schilling <coding@schilljs.com> | 2020-11-10 09:33:29 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2020-11-10 15:36:27 +0100 |
commit | 5b5aebbf66e7559aac73eb82b236b052b6a1ae3e (patch) | |
tree | 471748128c3294eee531a7f1c94dff976af6c8b4 /lib/private/Security | |
parent | fbda2d1d253b99a4e83970e023ede42faad87966 (diff) | |
download | nextcloud-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 'lib/private/Security')
-rw-r--r-- | lib/private/Security/CredentialsManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Security/CredentialsManager.php b/lib/private/Security/CredentialsManager.php index 20af25ae10f..2a480ef7105 100644 --- a/lib/private/Security/CredentialsManager.php +++ b/lib/private/Security/CredentialsManager.php @@ -35,7 +35,7 @@ use OCP\Security\ICrypto; * @package OC\Security */ class CredentialsManager implements ICredentialsManager { - public const DB_TABLE = 'credentials'; + public const DB_TABLE = 'storages_credentials'; /** @var ICrypto */ protected $crypto; |