fa8555629cffd53962693ca23227b7a8b99706af wong Wed Apr 4 13:02:47 2012 -0700 added in dummy column diff --git src/hg/lib/bigBed.sql src/hg/lib/bigBed.sql index 09fcbfa..ee9346c 100644 --- src/hg/lib/bigBed.sql +++ src/hg/lib/bigBed.sql @@ -1,17 +1,18 @@ # bed6.sql was originally generated by the autoSql program, which also # generated bed6.c and bed6.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #Browser extensible data CREATE TABLE bed6 ( chrom varchar(255) not null, # Human chromosome or FPC contig chromStart int unsigned not null, # Start position in chromosome chromEnd int unsigned not null, # End position in chromosome name varchar(255) not null, # Name of item score int unsigned not null, # Score from 0-1000 strand char(1) not null, # + or - #Indices + dummy varchar(255), #dummy column, this file is for a make to not fail INDEX(chrom,start), INDEX(chrom,end) );