b77b6f5e5775c0b19238d66279c8e2a373ddce8d
hiram
  Thu Jul 24 09:44:46 2014 -0700
eliminating the description field and named as rmskJoinedBaseline for table browser recognition in tableDescriptions refs #9741
diff --git src/hg/lib/rmskJoined.sql src/hg/lib/rmskJoined.sql
index f5bd829..0c87198 100644
--- src/hg/lib/rmskJoined.sql
+++ src/hg/lib/rmskJoined.sql
@@ -1,26 +1,24 @@
 # rmskJoined.sql was originally generated by the autoSql program, which also 
 # generated rmskJoined.c and rmskJoined.h.  This creates the database representation of
 # an object which can be loaded and saved from RAM in a fairly 
 # automatic way.
 
 #RepeatMasker joined annotation record
-CREATE TABLE rmskJoined (
+CREATE TABLE rmskJoinedBaseline (
     bin int unsigned not null,          # bin number for browser speedup
     chrom varchar(255) not null,	# Reference sequence chromosome or scaffold
     chromStart int unsigned not null,	# Start position of feature in chromosome
     chromEnd int unsigned not null,	# End position feature in chromosome
     name varchar(255) not null,	# Short Name of item
     score int unsigned not null,	# Score from 0-1000
     strand char(1) not null,	# + or -
     alignStart int unsigned not null,	# Start position of aligned portion of feature
     alignEnd int unsigned not null,	# End position of aligned portion of feature
     reserved int unsigned not null,	# Used as itemRgb
     blockCount int not null,	# Number of blocks
     blockSizes longblob not null,	# Comma separated list of block sizes
     blockRelStarts longblob not null,	# Start positions rel. to chromStart or -1 for unaligned blocks
     id varchar(255) not null,	# ID to bed used in URL to link back
-#  missing description at this time ?
-#     description longblob not null,	# Long description of item for the details page
               #Indices
     INDEX(chrom,bin)
 );