- CREATE TABLE `tblLogAdcentral` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL DEFAULT '0',
`account_type` enum('publisher','advertiser','general','prospect') NOT NULL DEFAULT 'general',
`salesrep_id` int(10) unsigned NOT NULL DEFAULT '0',
`note` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`note_type` enum('BILLING','EMAIL','NOTE','SYSTEM','ZENDESK') NOT NULL DEFAULT 'NOTE',
`date_action` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`followup_date` date DEFAULT NULL,
`followup_time` time DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `followup_date` (`followup_date`),
KEY `account_id` (`account_id`,`account_type`),
KEY `date_action` (`date_action`)
) ENGINE=InnoDB AUTO_INCREMENT=38508492 DEFAULT CHARSET=latin1