/**
  * Create a new relation.
  *
  * @param string $sourceTable      See property $sourceTable
  * @param string $destinationTable See property $destinationTable
  */
 public function __construct($sourceTable, $destinationTable)
 {
     parent::__construct($sourceTable, $destinationTable);
     $this->properties['cascade'] = false;
 }