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',