diff --git a/lib/Doctrine/Schema/Database.php b/lib/Doctrine/Schema/Database.php index 62e2e946b..c75fb3ba9 100644 --- a/lib/Doctrine/Schema/Database.php +++ b/lib/Doctrine/Schema/Database.php @@ -41,7 +41,7 @@ class Doctrine_Schema_Database extends Doctrine_Schema_Object { 'version' => null, 'engine' => null); - + private $childs = array(); /** * @@ -73,6 +73,15 @@ class Doctrine_Schema_Database extends Doctrine_Schema_Object { * @access public */ public function addTable( $table = null ) { - + $this->childs[] = $table; + } + + /** + * + * @return array of Doctrine_Schema_Table + * + */ + public function getTables() { + return $this->childs; } }