Signed-off-by: dartcafe <github@dartcafe.de>
@ -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;