Also make it the uid_lower migration work on oracle
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
323ee3cbdc
commit
24cfee8cdd
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue