get_collation(); return "CREATE TABLE {$wpdb->prefix}$this->table_name ( `ID` int(12) unsigned NOT NULL auto_increment, `url` text NOT NULL, `l_hash` varchar(40) NOT NULL, `clean_url` varchar(190) NOT NULL, `created_at` datetime NOT NULL, `oid` bigint(20) UNSIGNED NOT NULL default 0 COMMENT 'Object ID', `sid` int(12) UNSIGNED NOT NULL default 0 COMMENT 'Step ID', `tid` int(12) UNSIGNED NOT NULL default 0 COMMENT 'Template ID', `type` tinyint(1) UNSIGNED NOT NULL default 1 COMMENT '1 - Automation | 2 - Broadcast | 3 - Note | 4 - Email | 5 - SMS | 6 - Form | 9 - Transactional', PRIMARY KEY (`ID`), UNIQUE KEY `l_hash` (`l_hash`), KEY `clean_url` (`clean_url`), KEY `oid` (`oid`), KEY `sid` (`sid`), KEY `tid` (`tid`), KEY `type` (`type`) ) $collate;"; } } }