1
0
mirror of synced 2025-01-17 22:11:41 +03:00

s/PostgreSQLPlatform/PostgreSqlPlatform/

This commit is contained in:
Brikou CARRE 2013-10-21 09:44:48 +02:00
parent a96fe8770c
commit 84b980227f

View File

@ -450,7 +450,7 @@ class ClassMetadataFactory extends AbstractClassMetadataFactory
$sequenceName = null;
$fieldName = $class->identifier ? $class->getSingleIdentifierFieldName() : null;
if ($this->targetPlatform instanceof Platforms\PostgreSQLPlatform) {
if ($this->targetPlatform instanceof Platforms\PostgreSqlPlatform) {
$columnName = $class->getSingleIdentifierColumnName();
$quoted = isset($class->fieldMappings[$fieldName]['quoted']) || isset($class->table['quoted']);
$sequenceName = $class->getTableName() . '_' . $columnName . '_seq';