From 24cfee8cdd7b83d6effe48184aa69360a768ecbc Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Tue, 10 Apr 2018 10:30:56 +0200 Subject: Also make it the uid_lower migration work on oracle Signed-off-by: Roeland Jago Douma --- core/Migrations/Version14000Date20180404140050.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') 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(); } } -- cgit v1.2.3