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/kgProtAlias.sql src/hg/lib/kgProtAlias.sql index 426ae38..594dc3b 100644 --- src/hg/lib/kgProtAlias.sql +++ src/hg/lib/kgProtAlias.sql @@ -1,15 +1,15 @@ # kgProtAlias.sql was originally generated by the autoSql program, which also # generated kgProtAlias.c and kgProtAlias.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 protein alias CREATE TABLE kgProtAlias ( kgID varchar(255) not null, # Known Gene ID displayID varchar(255) not null, # protein display ID alias varchar(255) not null, # a protein alias #Indices KEY(kgID), KEY(displayID), KEY(alias) -)TYPE=MyISAM;; +)ENGINE=MyISAM;