765b320d02fb08f74c8d61eced401c628355bed1 markd Thu May 17 17:07:13 2012 -0700 allow multiple entries for an given item name diff --git src/hg/lib/itemDetailsHtml.sql src/hg/lib/itemDetailsHtml.sql index bebf5c2..2442ac7 100644 --- src/hg/lib/itemDetailsHtml.sql +++ src/hg/lib/itemDetailsHtml.sql @@ -1,12 +1,12 @@ # itemDetailsHtml.sql was originally generated by the autoSql program, which also # generated itemDetailsHtml.c and itemDetailsHtml.h. This creates the database representation of # an object which can be loaded and saved from RAM in a fairly # automatic way. #table that allows adding html to details page for various items CREATE TABLE itemDetailsHtml ( name varchar(255) not null, # Name of item html longblob not null, # HTML fragment to include #Indices - PRIMARY KEY(name) + INDEX(name) );