Hay un problema con el script mysql.sql para la tabla de dispositivos y se ha informado en el público JIRA
. En <PRODUCT_HOME>/dbscripts/emm/mysql.sql
, cambia el campo wifi_mac
para tabla de dispositivos a mac
como se muestra a continuación:
CREATE TABLE IF NOT EXISTS `devices` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tenant_id` int(11) DEFAULT NULL,
`user_id` varchar(255) DEFAULT NULL,
`platform_id` int(11) DEFAULT NULL,
`reg_id` longtext,
`os_version` varchar(45) DEFAULT NULL,
`properties` text,
`created_date` datetime DEFAULT NULL,
`status` varchar(10) DEFAULT NULL,
`byod` smallint(6) DEFAULT '1',
`deleted` int(11) DEFAULT '0',
`vendor` varchar(11) DEFAULT NULL,
`udid` VARCHAR(4096) NULL DEFAULT NULL,
`push_token` VARCHAR(256) NULL DEFAULT NULL,
**`mac`** varchar(100) NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;