CREATE TABLE `host_MyApp_DUFs` ( `DUF_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `member_id` bigint(20) unsigned NOT NULL COMMENT '', `install_id` tinyint(1) unsigned NOT NULL COMMENT '', `job_id` int(12) unsigned NOT NULL DEFAULT '0' COMMENT '', `content` longtext COLLATE utf8_unicode_ci COMMENT '', `token_id` bigint(20) unsigned DEFAULT NULL COMMENT 'links to `host_MyApp_tokens`', PRIMARY KEY (`member_id`,`install_id`,`job_id`,`DUF_id`), UNIQUE KEY `token_id` (`token_id`), KEY `DUF_id` (`DUF_id`) ) ENGINE=InnoDB AUTO_INCREMENT=406 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT=''; /*!40101 SET character_set_client = @saved_cs_client */;