CREATE TABLE `comentarios` (
  `id` int(11) NOT NULL auto_increment,
  `name` text NOT NULL,
  `message` longtext NOT NULL,
  `date` text NOT NULL,
  `subject` text NOT NULL,
  PRIMARY KEY  (`id`)
) TYPE=MyISAM;
