Here is table defination:
CREATE TABLE IF NOT EXISTS `#__flexicontent_checklist` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`itemId` int(11) unsigned NOT NULL,
`checklistFieldId` int(11) unsigned NOT NULL,
`editable` tinyint(1) NOT NULL DEFAULT '0',
`createdBy` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE `utf8_general_ci` ;
CREATE TABLE IF NOT EXISTS `#__flexicontent_checklist_item` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`checklistId` int(11) NOT NULL,
`item` varchar (255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE `utf8_general_ci` ;
And u can find checklist.php file in attachment