-- MySQL dump 8.23 -- -- Host: localhost Database: PO_0205 --------------------------------------------------------- -- Server version 4.1.7-standard-log -- -- Table structure for table `graph_path` -- CREATE TABLE graph_path ( id int(11) NOT NULL auto_increment, term1_id int(11) NOT NULL default '0', term2_id int(11) NOT NULL default '0', distance int(11) NOT NULL default '0', PRIMARY KEY (id), UNIQUE KEY graph_path0 (id), KEY graph_path1 (term1_id), KEY graph_path2 (term2_id), KEY graph_path3 (term1_id,term2_id), KEY graph_path4 (term1_id,distance) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;