Try this (if you have nmo data in QA, otherwise you'll have to fix data one by one):
--
-- Table structure for table `qa_forms_items_attr`
--
DROP TABLE IF EXISTS `qa_forms_items_attr`;
CREATE TABLE `qa_forms_items_attr` (
`attribute_id` int(11) NOT NULL auto_increment,
`form_id` int(11) NOT NULL,
`item_code` varchar(5) NOT NULL,
`attr_type` set('rule','weight','shortcut','extrascore','nonscoring') NOT NULL,
`attr_value` varchar(256) NOT NULL,
`sys_dt_creazione` datetime NOT NULL,
`sys_user_creazione` int(11) NOT NULL,
`sys_dt_modifica` datetime NOT NULL,
`sys_user_modifica` int(11) NOT NULL,
`sys_optilock` int(11) NOT NULL,
PRIMARY KEY (`attribute_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=47 ;