This commit is contained in:
parent
88bf7c1731
commit
8bb6dbb517
1 changed files with 9 additions and 0 deletions
|
@ -132,12 +132,21 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
|
||||||
*
|
*
|
||||||
* -- inheritanceMap inheritanceMap is used for inheritance mapping, keys representing columns and values
|
* -- inheritanceMap inheritanceMap is used for inheritance mapping, keys representing columns and values
|
||||||
* the column values that should correspond to child classes
|
* the column values that should correspond to child classes
|
||||||
|
*
|
||||||
|
* -- engine database engine (mysql example: INNODB)
|
||||||
|
*
|
||||||
|
* -- charset character set
|
||||||
|
*
|
||||||
|
* -- collation
|
||||||
*/
|
*/
|
||||||
protected $options = array('name' => null,
|
protected $options = array('name' => null,
|
||||||
'tableName' => null,
|
'tableName' => null,
|
||||||
'sequenceName' => null,
|
'sequenceName' => null,
|
||||||
'inheritanceMap' => array(),
|
'inheritanceMap' => array(),
|
||||||
'enumMap' => array(),
|
'enumMap' => array(),
|
||||||
|
'engine' => null,
|
||||||
|
'charset' => null,
|
||||||
|
'collation' => null
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue