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/spXref3.sql src/hg/lib/spXref3.sql
index 085f5f8..660cba9 100644
--- src/hg/lib/spXref3.sql
+++ src/hg/lib/spXref3.sql
@@ -1,14 +1,14 @@
 CREATE TABLE spXref3 (
   accession varchar(40) NOT NULL default '',
   displayID varchar(40) NOT NULL default '',
   division varchar(40) NOT NULL default '',
   bioentryID int(11) NOT NULL default '0',
   biodatabaseID int(11) NOT NULL default '0',
   description text NOT NULL default '',
   hugoSymbol varchar(40) NOT NULL default '',
   hugoDesc varchar(255) NOT NULL default '',
   KEY accession(accession),
   KEY displayID(displayID),
   KEY hugoSymbol(hugoSymbol)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;