fixed quotes

Signed-off-by: dartcafe <github@dartcafe.de>
This commit is contained in:
dartcafe 2023-06-20 18:32:49 +02:00
parent ed294f6e43
commit 2211721c2b
No known key found for this signature in database
GPG key ID: CCE73CEF3035D3C8

View file

@ -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;