b5648914270e1f508c7276e3d0a4318a49898f48 braney Wed Feb 26 14:17:41 2014 -0800 a bunch of changes to SQL files to accomodate a change from TYPE=ISAM toENGINE=ISAM. diff --git src/hg/lib/bioCycPathway.sql src/hg/lib/bioCycPathway.sql index 3dee447..ff6b3d4 100644 --- src/hg/lib/bioCycPathway.sql +++ src/hg/lib/bioCycPathway.sql @@ -1,9 +1,9 @@ CREATE TABLE bioCycPathway ( kgID varchar(40) NOT NULL default '', geneID varchar(40) NOT NULL default '', mapID varchar(40) NOT NULL default '', KEY kgID (kgID), KEY geneID (geneID), KEY mapID (mapID) -) TYPE=MyISAM; +) ENGINE=MyISAM;