215cd7d8cb5abdccaf7cda25430cb3895da286b5
fanhsu
  Thu Aug 18 09:58:43 2011 -0700
Added description col.
diff --git src/hg/lib/omimAvRepl.sql src/hg/lib/omimAvRepl.sql
index d3f41ad..6166225 100644
--- src/hg/lib/omimAvRepl.sql
+++ src/hg/lib/omimAvRepl.sql
@@ -1,13 +1,14 @@
 CREATE TABLE omimAvRepl (
     avId varchar(40) not null,	# MIM AV Number
     omimId int not null,	# MIM ID
     
     firstAa char(1),		# first AA
     position int,		# position in the protein sequence
     secondAa char(1),		# 2nd AA
     dbSnpId varchar(255),	# dbSNP ID if available
               #Indices
     replStr varchar(255),	# AA replacement string
+    description varchar(255),   # description
     KEY(avId),
     KEY(omimId)
 );