Código PHP:
ERROR 1064 (42000) at line 19: You have an error in your SQL syntax; check the m anual that corresponds to your MySQL server version for the right syntax to use near '`id` int(10) unsigned NOT NULL auto_increment COMMENT 'Clave primaria',
`paren' at line 1
De antemano, Gracias
Código PHP:
16-- Estructura de tabla para la tabla `aairm_assets`
17--
18
19CREATE TABLE `aairm_assets` (
20 `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Clave primaria',
21 `parent_id` int(11) NOT NULL default '0' COMMENT 'Anidadas al conjunto 22padre.',
23 `lft` int(11) NOT NULL default '0' COMMENT 'Anidadas conjunto lft.',
24 `rgt` int(11) NOT NULL default '0' COMMENT 'Anidadas conjunto rgt.',
25 `level` int(10) unsigned NOT NULL COMMENT 'Nivel de la caché en el árbol 26anidado.',
27 `name` varchar(50) NOT NULL COMMENT 'Nombre único para el activo.\n',
28 `title` varchar(100) NOT NULL COMMENT 'Título descriptivo para el activo.',
29 `rules` varchar(5120) NOT NULL COMMENT 'Control de acceso codificado de 30JSON.',
31 PRIMARY KEY (`id`),
32 UNIQUE KEY `idx_asset_name` (`name`),
33 KEY `idx_lft_rgt` (`lft`,`rgt`),
34 KEY `idx_parent_id` (`parent_id`)
35) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=utf8 36AUTO_INCREMENT=35 ;