示例#1
0
 /**
  * Returns an associative array containing all the foreign key relationships
  * associated with the supplied table.
  *
  * The array has the following format:
  *
  * <pre>
  * array(
  *     'column_name' => array(
  *         'table'  => 'foreign_table',
  *         'column' => 'foreign_column'
  *     )
  * )
  * </pre>
  *
  * @param string $tableName
  * @return array
  */
 public function listForeignKeyReferences($tableName)
 {
     return $this->driver->listForeignKeyReferences($tableName);
 }