summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-04-11 00:41:53 +0200
committerGitHub <noreply@github.com>2018-04-11 00:41:53 +0200
commita3c20356740c392355364b3b119be626a9f34f56 (patch)
treef1e6cb9d7590e844e47f1e698097ff9dab47e422 /core
parent0d7d064788763d24194c77fe73531f45ae35cfdc (diff)
parent24cfee8cdd7b83d6effe48184aa69360a768ecbc (diff)
downloadnextcloud-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.php2
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();
}
}