detect autoincrement columns
This commit is contained in:
parent
2704af6435
commit
0148078757
@ -332,6 +332,7 @@ class Doctrine_DataDict_Mysql extends Doctrine_DataDict {
|
|||||||
'primary' => (strtolower($val['key']) == 'pri'),
|
'primary' => (strtolower($val['key']) == 'pri'),
|
||||||
'default' => $val['default'],
|
'default' => $val['default'],
|
||||||
'notnull' => (bool) ($val['null'] != 'YES'),
|
'notnull' => (bool) ($val['null'] != 'YES'),
|
||||||
|
'autoinc' => (bool) (strpos($val['extra'],"auto_increment") > -1),
|
||||||
);
|
);
|
||||||
$columns[$val['field']] = new Doctrine_Schema_Column($description);
|
$columns[$val['field']] = new Doctrine_Schema_Column($description);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user