859545663a448275431bed3a72ccd4596b6d1963
markd
  Wed Aug 18 13:19:35 2010 -0700
added support for importing CCDS public notes into a table
diff --git src/hg/lib/ccdsNotes.sql src/hg/lib/ccdsNotes.sql
new file mode 100644
index 0000000..5595577
--- /dev/null
+++ src/hg/lib/ccdsNotes.sql
@@ -0,0 +1,13 @@
+# ccdsNotes.sql was originally generated by the autoSql program, which also 
+# generated ccdsNotes.c and ccdsNotes.h.  This creates the database representation of
+# an object which can be loaded and saved from RAM in a fairly 
+# automatic way.
+
+#Consensus CDS public notes
+CREATE TABLE ccdsNotes (
+    ccds char(12) not null,	# CCDS id
+    createDate char(10) not null,	# date note was added
+    note longblob not null,	# text of note
+              #Indices
+    PRIMARY KEY(ccds)
+);