Page is a not externally linkable
LinusIT - 5:21 pm on Jan 28, 2011 (gmt 0)
I used the following to create the table
CREATE TABLE `model` (
`model_id` tinyint(4) NOT NULL auto_increment,
`manufacturer_id` tinyint(4) default NULL,
`model_name` varchar(30) default NULL,
PRIMARY KEY (`model_id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;