Unverified Commit 106097a3 authored by Daniel Hensby's avatar Daniel Hensby Committed by Daniel Hensby

FIX Sequence::isAutoIncrementsFor now case insensitive

parent e9e6a5d6
......@@ -149,7 +149,7 @@ class Sequence extends AbstractAsset
$sequenceName = $this->getShortestName($table->getNamespaceName());
$tableName = $table->getShortestName($table->getNamespaceName());
$tableSequenceName = sprintf('%s_%s_seq', $tableName, $pkColumns[0]);
$tableSequenceName = sprintf('%s_%s_seq', $tableName, $column->getShortestName($table->getNamespaceName()));
return $tableSequenceName === $sequenceName;
}
......
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