diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-04-11 00:41:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-11 00:41:53 +0200 |
commit | a3c20356740c392355364b3b119be626a9f34f56 (patch) | |
tree | f1e6cb9d7590e844e47f1e698097ff9dab47e422 /core | |
parent | 0d7d064788763d24194c77fe73531f45ae35cfdc (diff) | |
parent | 24cfee8cdd7b83d6effe48184aa69360a768ecbc (diff) | |
download | nextcloud-server-a3c20356740c392355364b3b119be626a9f34f56.tar.gz nextcloud-server-a3c20356740c392355364b3b119be626a9f34f56.zip |
Merge pull request #9128 from nextcloud/bugfix/9076/make_oracle_happy
Also make the uid_lower migration work on oracle
Diffstat (limited to 'core')
-rw-r--r-- | core/Migrations/Version14000Date20180404140050.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Migrations/Version14000Date20180404140050.php b/core/Migrations/Version14000Date20180404140050.php index 01d56f511ff..d7077caa149 100644 --- a/core/Migrations/Version14000Date20180404140050.php +++ b/core/Migrations/Version14000Date20180404140050.php @@ -74,7 +74,7 @@ class Version14000Date20180404140050 extends SimpleMigrationStep { $qb = $this->connection->getQueryBuilder(); $qb->update('users') - ->set('uid_lower', $qb->createFunction('LOWER(`uid`)')); + ->set('uid_lower', $qb->func()->lower('uid')); $qb->execute(); } } |