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/kgAlias.sql src/hg/lib/kgAlias.sql
index 4fa78ea..1d6dd83 100644
--- src/hg/lib/kgAlias.sql
+++ src/hg/lib/kgAlias.sql
@@ -1,12 +1,12 @@
 # kgAlias.sql was originally generated by the autoSql program, which also 
 # generated kgAlias.c and kgAlias.h.  This creates the database representation of
 # an object which can be loaded and saved from RAM in a fairly 
 # automatic way.
 
 #Link together a Known Gene ID and a gene alias
 CREATE TABLE kgAlias (
   kgID varchar(40) NOT NULL default '', 	# Known Gene ID
   alias varchar(80) default NULL,		# a gene alias
   KEY kgID (kgID),
   KEY alias (alias)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;