mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 09:13:19 -04:00
fixed quotes
Signed-off-by: dartcafe <github@dartcafe.de>
This commit is contained in:
parent
ed294f6e43
commit
2211721c2b
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ class PostgreSqlMigrator extends Migrator {
|
|||
}
|
||||
$fromDefault = $column->fromColumn->getDefault();
|
||||
$toDefault = $column->column->getDefault();
|
||||
$fromDefault = trim((string) $fromDefault, "()");
|
||||
$fromDefault = trim((string) $fromDefault, '()');
|
||||
|
||||
// by intention usage of !=
|
||||
return $fromDefault != $toDefault;
|
||||
|
|
|
|||
Loading…
Reference in a new issue