cc3bb4c7a8869753680d18b49bc228e002ab1cd6 markd Mon May 14 15:39:40 2012 -0700 use blobs rather than varchar for html details, add to valid tags diff --git src/hg/lib/itemDetailsHtml.sql src/hg/lib/itemDetailsHtml.sql index 05500e9..bebf5c2 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 varchar(255) not null, # HTML fragment to include + html longblob not null, # HTML fragment to include #Indices - INDEX(name) + PRIMARY KEY(name) );