9141acd7afb717c790fdcbadaa1cb9945e5d27c4 braney Thu Apr 28 14:36:32 2011 -0700 toook out the now missing 'txt' field diff --git src/hg/lib/metaDb.sql src/hg/lib/metaDb.sql index c1d54f4..8eb807f 100644 --- src/hg/lib/metaDb.sql +++ src/hg/lib/metaDb.sql @@ -1,18 +1,14 @@ # metaDb.sql was originally generated by the autoSql program, which also # generated metaDb.c and metaDb.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #This contains metadata for a table, file or other predeclared object type. CREATE TABLE metaDb ( obj varchar(255) not null, # Object name or ID. var varchar(255) not null, # Metadata variable name. - varType enum ( - 'txt', # Most vars are txt - 'binary' # some vars are binary - ) not null default 'txt', val longblob not null, # Metadata value. #Indices PRIMARY KEY(obj,var), UNIQUE(var,val(32),obj) );