create table `silpb_image` ( `id` int not null auto_increment, `blogid` int not null, `whenadded` datetime not null, `width` int not null, `height` int not null, `mimetype` varchar(64) not null, `filename` varchar(64) not null, `image` blob not null, primary key (`id`), key `blogid` (`blogid`) ) type=MyISAM; create table `silpb_blog` ( `id` int not null auto_increment, `whenadded` datetime not null, `fromwho` varchar(255) not null, `usermap` varchar(255) not null, `category` varchar(255) not null, `subject` varchar(255) not null, `blog` text not null, primary key(`id`) ) type=MyISAM;