92403f62ccb18b27867f9220c679b31e4336d8a6
fanhsu
  Mon Oct 25 15:13:52 2010 -0700
Checking in .sql for RGD Genes build.  Issue #29.
diff --git src/hg/lib/rgdGene2ToUniProt.sql src/hg/lib/rgdGene2ToUniProt.sql
new file mode 100644
index 0000000..16354da
--- /dev/null
+++ src/hg/lib/rgdGene2ToUniProt.sql
@@ -0,0 +1,8 @@
+CREATE TABLE rgdGene2ToUniProt (
+    name  varchar(40)  not null,	# RGD Gene ID
+    value varchar(40) not null,	# UniProt Accession
+              #Indices
+    INDEX(name(20)),
+    INDEX(value(20))
+
+);