Ver originalCREATE TABLE IF NOT EXISTS `categorias` ( `categoria_id` bigint(200) NOT NULL, `categoria_nombre` varchar(200) NOT NULL, `categoria_nombre_en` varchar(200) NOT NULL) ENGINE=MyISAM DEFAULT CHARSET=latin1; CREATE TABLE IF NOT EXISTS `productos` ( `producto_id` bigint(200) NOT NULL AUTO_INCREMENT, `nombre` varchar(255) DEFAULT NULL, `nombre_en` varchar(200) DEFAULT NULL, `descripcion` text, `descripcion_en` text, `imagen` varchar(200) DEFAULT NULL, `categoria_padre` int(200) NOT NULL, PRIMARY KEY (`producto_id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=0 ;