tables = array('T697_Person', 'T697_User'); parent::prepareTables(); } public function testIdsAreSetWhenSavingSubclassInstancesInCTI() { $personTable = $this->conn->getTable('T697_Person'); $userTable = $this->conn->getTable('T697_User'); //var_dump($userTable->getColumns()); $p = new T697_Person(); $p['name']='Rodrigo'; $p->save(); $this->assertEqual(1, $p->id); $u = new T697_User(); $u['name']='Fernandes'; $u['password']='Doctrine RULES'; $u->save(); $this->assertEqual(2, $u->id); } } class T697_Person extends Doctrine_Record { public function setTableDefinition() { $this->setInheritanceType(Doctrine::INHERITANCETYPE_JOINED, array('T697_Person' => array('dtype' => 1), 'T697_User' => array('dtype' => 2))); $this->setTableName('t697_person'); $this->hasColumn('name', 'string', 30); $this->hasColumn('dtype', 'integer', 4); } } //Class table inheritance class T697_User extends T697_Person { public function setTableDefinition() { $this->setTableName('t697_user'); $this->hasColumn('password', 'string', 30); } }