1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-28 16:49:57 +02:00

Display foreign keys from other schemas in PostgreSQL (thanks to Ondrej Letocha)

This commit is contained in:
Jakub Vrana
2011-07-12 16:03:39 +02:00
parent 33c4623345
commit 9e0e161253
5 changed files with 10 additions and 7 deletions

View File

@@ -436,7 +436,7 @@ if (!defined("DRIVER")) {
/** Get foreign keys in table
* @param string
* @return array array($name => array("db" => , "table" => , "source" => array(), "target" => array(), "on_delete" => , "on_update" => ))
* @return array array($name => array("db" => , "ns" => , "table" => , "source" => array(), "target" => array(), "on_delete" => , "on_update" => ))
*/
function foreign_keys($table) {
global $connection, $on_actions;