Ver Mensaje Individual
  #11 (permalink)  
Antiguo 27/05/2009, 10:54
Avatar de abimaelrc
abimaelrc
Colaborador
 
Fecha de Ingreso: mayo-2009
Ubicación: En el planeta de Puerto Rico
Mensajes: 14.734
Antigüedad: 15 años
Puntos: 1517
Respuesta: probemas en buscador

OK pon este

DROP TABLE IF EXISTS `consultas`;
CREATE TABLE IF NOT EXISTS `consultas` (
`id_consulta` int( 11 ) NOT NULL AUTO_INCREMENT ,
`titulo_consulta` text NOT NULL ,
`contenido_consulta` text NOT NULL ,
`activo_consulta` int( 11 ) NOT NULL DEFAULT '0',
PRIMARY KEY ( `id_consulta` ) ,
FULLTEXT KEY `titulo_consulta` ( `titulo_consulta` , `contenido_consulta` )
) ENGINE = MYISAM;