Index: branches/RC/admin/install/inportal_schema.sql =================================================================== diff -u -r8929 -r9376 --- branches/RC/admin/install/inportal_schema.sql (.../inportal_schema.sql) (revision 8929) +++ branches/RC/admin/install/inportal_schema.sql (.../inportal_schema.sql) (revision 9376) @@ -291,3 +291,18 @@ ) # -------------------------------------------------------- + +CREATE TABLE RelatedSearches ( + RelatedSearchId int(11) NOT NULL auto_increment, + ResourceId int(11) NOT NULL default '0', + Keyword varchar(255) NOT NULL default '', + ItemType tinyint(4) NOT NULL default '0', + Enabled tinyint(4) NOT NULL default '1', + Priority int(11) NOT NULL default '0', + PRIMARY KEY (RelatedSearchId), + KEY Enabled (Enabled), + KEY ItemType (ItemType), + KEY ResourceId (ResourceId) +) + +# --------------------------------------------------------