get_collation(); return "CREATE TABLE {$wpdb->prefix}$this->table_name ( `ID` bigint(20) unsigned NOT NULL auto_increment, `source` varchar(60) NOT NULL, `event` varchar(60) NOT NULL, `status` tinyint(1) NOT NULL default 0 COMMENT '1 - Active 2 - Inactive', `priority` tinyint(3) NOT NULL default 0, `start` bigint(10) UNSIGNED NOT NULL, `v` tinyint(1) UNSIGNED NOT NULL default 1, `benchmark` longtext, `title` varchar(255) NULL, PRIMARY KEY (`ID`), KEY `ID` (`ID`), KEY `status` (`status`) ) $collate;"; } }