CREATE TABLE `faqcategories` (
  `id` int(11) NOT NULL auto_increment,
  `category` varchar(250) NOT NULL default '',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;
INSERT INTO `faqcategories` VALUES (1, 'FAQMasterFlex Usage');
CREATE TABLE `faqs` (
  `id` int(11) NOT NULL auto_increment,
  `category_id` int(11) default NULL,
  `question` longtext,
  `answer` longtext,
  PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=3 ;
INSERT INTO `faqs` VALUES (1, 1, 'Why can\'t I see any categories or FAQs?', 'Chances are, if you\'re reading this there isn\'t a problem.');
INSERT INTO `faqs` VALUES (2, 1, 'What is the maximum number of categories or FAQs that can \r\nbe entered?', 'This is no limit. ');