This commit is contained in:
parent
35a760aadc
commit
880422ca88
1 changed files with 3 additions and 3 deletions
|
@ -383,10 +383,10 @@ class Doctrine_DataDict_Pgsql extends Doctrine_DataDict
|
||||||
if (!empty($field['length'])) {
|
if (!empty($field['length'])) {
|
||||||
$length = $field['length'];
|
$length = $field['length'];
|
||||||
if ($length > 4) {
|
if ($length > 4) {
|
||||||
return 'BIGSERIAL PRIMARY KEY';
|
return 'BIGSERIAL';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 'SERIAL PRIMARY KEY';
|
return 'SERIAL';
|
||||||
}
|
}
|
||||||
if (!empty($field['length'])) {
|
if (!empty($field['length'])) {
|
||||||
$length = $field['length'];
|
$length = $field['length'];
|
||||||
|
@ -575,7 +575,7 @@ class Doctrine_DataDict_Pgsql extends Doctrine_DataDict
|
||||||
|
|
||||||
if ( ! empty($field['autoincrement'])) {
|
if ( ! empty($field['autoincrement'])) {
|
||||||
$name = $this->conn->quoteIdentifier($name, true);
|
$name = $this->conn->quoteIdentifier($name, true);
|
||||||
return $name.' '.$this->getNativeDeclaration($field);
|
return $name . ' ' . $this->getNativeDeclaration($field);
|
||||||
}
|
}
|
||||||
|
|
||||||
$default = '';
|
$default = '';
|
||||||
|
|
Loading…
Add table
Reference in a new issue