1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Relation is the relation between 1 column in the local table and 1 column in a second table

This commit is contained in:
runa 2006-11-03 20:17:16 +00:00
parent 36e69bebc5
commit 870ce44263

View file

@ -36,16 +36,23 @@
class Doctrine_Schema_Relation extends Doctrine_Schema_Object { class Doctrine_Schema_Relation extends Doctrine_Schema_Object {
/** /**
* Columns that refer to another table * Column that refers to another table
* @access public * @access public
*/ */
public $referencingFields; public $referencingColumn;
/** /**
* Columns that are referred from another table * Column that is referred from another table
* @access public * @access public
*/ */
public $referredFields; public $referencedColumn;
/**
* Table where the referred column lives
* @access public
*
*/
public $referencedTable;
/** /**
* ON UPDATE or ON DELETE action * ON UPDATE or ON DELETE action
@ -85,13 +92,16 @@ class Doctrine_Schema_Relation extends Doctrine_Schema_Object {
/** /**
* *
* @param Doctrine_Schema_Column referringColumns * @param Doctrine_Schema_Column referencing
* @param Doctrine_Schema_Column referencedColumns * @param Doctrine_Schema_Table referencedtable
* @param Doctrine_Schema_Column referencedColumn
* @return * @return
* @access public * @access public
*/ */
public function setRelationBetween( $referringColumns, $referencedColumns ) { public function setRelationBetween( $referencingColumn, $referencedTable, $referencedColumn ) {
$this->referencingColumn = $referencingColumn;
$this->referencedTable = $referencedTable;
$this->referencedColumn = $referencedColumn;
} }
/** /**
* *
@ -99,7 +109,7 @@ class Doctrine_Schema_Relation extends Doctrine_Schema_Object {
* @access public * @access public
*/ */
public function __toString( ) { public function __toString( ) {
return "Relation between '".$this->referencingColumn."' and '".$this->referencedTable."'.'".$this->referencingColumn."'";
} }
/** /**
* *