added addTable and getTables methods
This commit is contained in:
parent
a94c714af1
commit
0fb5f14717
@ -41,7 +41,7 @@ class Doctrine_Schema_Database extends Doctrine_Schema_Object {
|
|||||||
'version' => null,
|
'version' => null,
|
||||||
'engine' => null);
|
'engine' => null);
|
||||||
|
|
||||||
|
private $childs = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -73,6 +73,15 @@ class Doctrine_Schema_Database extends Doctrine_Schema_Object {
|
|||||||
* @access public
|
* @access public
|
||||||
*/
|
*/
|
||||||
public function addTable( $table = null ) {
|
public function addTable( $table = null ) {
|
||||||
|
$this->childs[] = $table;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @return array of Doctrine_Schema_Table
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function getTables() {
|
||||||
|
return $this->childs;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user