src/hg/lib/cddDesc.sql 1.1

1.1 2009/09/24 20:56:38 holmes
adding cdd description table
Index: src/hg/lib/cddDesc.sql
===================================================================
RCS file: src/hg/lib/cddDesc.sql
diff -N src/hg/lib/cddDesc.sql
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/hg/lib/cddDesc.sql	24 Sep 2009 20:56:38 -0000	1.1
@@ -0,0 +1,16 @@
+# cddDesc.sql was originally generated by the autoSql program, which also 
+# generated cddDesc.c and cddDesc.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#Conserved Domain Description
+CREATE TABLE cddDesc (
+    cddid int unsigned not null,	# identifier
+    accession varchar(255) not null,	# accession
+    cddname varchar(255) not null,	# Name of domain
+    name varchar(255) not null,	# hit name
+    cdddesc varchar(255) not null,	# descriptive name
+    cddlength int unsigned not null,	# length
+              #Indices
+    PRIMARY KEY(cddid)
+);