Here's what I am using for mine ( well not exactly, i changed it quite a bit, but this should present the gist of the table structures. )
Code:
#
# Table structure for table `vbgarage_comments`
#
CREATE TABLE `vbgarage_comments` (
`id` int(10) unsigned NOT NULL auto_increment,
`garageid` int(10) unsigned NOT NULL default '0',
`username` varchar(50) NOT NULL default '',
`pagetext` text NOT NULL,
`dateline` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1;
# --------------------------------------------------------
#
# Table structure for table `vbgarage_images`
#
CREATE TABLE `vbgarage_images` (
`imageid` int(10) unsigned NOT NULL auto_increment,
`garageid` int(10) unsigned NOT NULL default '0',
`name` varchar(50) NOT NULL default '',
`data` longblob NOT NULL,
`type` varchar(50) NOT NULL default '',
PRIMARY KEY (`imageid`)
) TYPE=MyISAM AUTO_INCREMENT=1;
# --------------------------------------------------------
#
# Table structure for table `vbgarage_ratings`
#
CREATE TABLE `vbgarage_ratings` (
`rateid` int(10) NOT NULL auto_increment,
`garageid` int(10) NOT NULL default '0',
`userid` int(10) NOT NULL default '0',
`rating` int(10) NOT NULL default '0',
PRIMARY KEY (`rateid`)
) TYPE=MyISAM AUTO_INCREMENT=1;
# --------------------------------------------------------
#
# Table structure for table `vbgarage_users`
#
CREATE TABLE `vbgarage_users` (
`garageid` int(10) unsigned NOT NULL auto_increment,
`userid` int(10) unsigned NOT NULL default '0',
`text` text,
`lastactivity` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`garageid`)
) TYPE=MyISAM AUTO_INCREMENT=1;