get_collation(); return "CREATE TABLE {$wpdb->prefix}$this->table_name ( `ID` bigint(20) unsigned NOT NULL auto_increment, `offset` bigint(20) unsigned NOT NULL, `processed` bigint(20) unsigned NOT NULL, `count` bigint(20) unsigned NOT NULL, `title` varchar(255) default NULL, `status` tinyint(1) unsigned not null default 0 COMMENT '0 - Draft 1 - Ongoing 2 - Completed 3 - Paused', `actions` longtext NOT NULL, `meta` longtext NOT NULL, `created_by` bigint(10) unsigned default 0, `created_at` datetime NOT NULL default '0000-00-00 00:00:00', `updated_at` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`ID`), KEY `title` (`title`), KEY `status` (`status`) ) $collate;"; } }