From 4aabf7d2aa4a518f840f0a075d52dfa5b5c3bb9d Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 8 May 2002 12:29:44 +0000 Subject: [PATCH] foreign_display_field in example --- Documentation.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Documentation.html b/Documentation.html index 4577b6919..e487cec31 100755 --- a/Documentation.html +++ b/Documentation.html @@ -1592,11 +1592,12 @@ $cfg['PmaAbsoluteUri'] = (!empty($HTTPS) ? 'https' : 'http') . '://'        master_field varchar(32) NOT NULL default '',
       foreign_table varchar(32) NOT NULL default '',
       foreign_field varchar(32) NOT NULL default '',
+        foreign_display_field varchar(32) NOT NULL default '',
       PRIMARY KEY (master_table,master_field)
     ) TYPE=MyISAM;

-      INSERT INTO relation VALUES ('persons', 'town_code', 'towns', 'town_code');
-      INSERT INTO relation VALUES ('persons', 'country_code', 'countries', 'country_code');
+      INSERT INTO relation VALUES ('persons', 'town_code', 'towns', 'town_code','description');
+      INSERT INTO relation VALUES ('persons', 'country_code', 'countries', 'country_code','description');

     CREATE TABLE towns (
       town_code varchar(5) NOT NULL default '0',