Hi,
There is a missing table : usbdevices.
Create it with this command :
CREATE TABLE usbdevices (
`ID` int(11) not null AUTO_INCREMENT,
`HARDWARE_ID` int(11) NOT NULL,
`TYPE` varchar(255) DEFAULT NULL,
`MANUFACTURER` varchar(255) default null,
`SERIAL` varchar(255) default null,
`INTERFACE` varchar(255) DEFAULT NULL,
`DESCRIPTION` varchar(255) DEFAULT NULL,
PRIMARY KEY (`ID`,`HARDWARE_ID`),
key `MANUFACTURER` (`MANUFACTURER`)
) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
This correction will be integrated in the next version.
Regards
Frank