be92120f95e214b96f28d78bed322ecb150844d9 tdreszer Wed Nov 24 10:05:15 2010 -0800 Removed three obsolete files that were replaced by metaDb(mdb) long ago. diff --git src/hg/lib/metaTbl.sql src/hg/lib/metaTbl.sql deleted file mode 100644 index e1d85b6..0000000 --- src/hg/lib/metaTbl.sql +++ /dev/null @@ -1,22 +0,0 @@ -# metaTbl.sql was originally generated by the autoSql program, which also -# generated metaTbl.c and metaTbl.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 metaTbl ( - objName varchar(255) not null, # Object name or ID. - objType enum ( - 'table', # Most objects are tables - 'file' # some objects are files - ) not null default 'table', - 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(objName,var), - UNIQUE(var,val(32),objName) -);