| CREATE TABLE `comments` (
  `name` text NOT NULL,
  `email` text NOT NULL,
  `history` text NOT NULL,
  `ip` text NOT NULL,
  `date` text NOT NULL,
  `location` text NOT NULL,
  `id` int(11) NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
 |