create table document ( id int unsigned primary key auto_increment, mtime timestamp, title varchar(255) not null default '(no title)', content blob not null default '', contentlength int unsigned not null default '0' );
info at phpclasses dot org