Commit 439200b6 authored by Claudio Zizza's avatar Claudio Zizza Committed by Steve Müller

Check for changed fixed option added in PostgreSqlPlatform

parent 295d73cf
...@@ -500,7 +500,7 @@ class PostgreSqlPlatform extends AbstractPlatform ...@@ -500,7 +500,7 @@ class PostgreSqlPlatform extends AbstractPlatform
$oldColumnName = $columnDiff->getOldColumnName()->getQuotedName($this); $oldColumnName = $columnDiff->getOldColumnName()->getQuotedName($this);
$column = $columnDiff->column; $column = $columnDiff->column;
if ($columnDiff->hasChanged('type') || $columnDiff->hasChanged('precision') || $columnDiff->hasChanged('scale')) { if ($columnDiff->hasChanged('type') || $columnDiff->hasChanged('precision') || $columnDiff->hasChanged('scale') || $columnDiff->hasChanged('fixed')) {
$type = $column->getType(); $type = $column->getType();
// here was a server version check before, but DBAL API does not support this anymore. // here was a server version check before, but DBAL API does not support this anymore.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment