-- -- Database: `survey` -- -- -------------------------------------------------------- -- -- Table structure for table `intend` -- CREATE TABLE `intend` ( `id` int(10) unsigned NOT NULL auto_increment, `description` varchar(255) collate utf8_unicode_ci NOT NULL default '', `pos` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=5 ; -- -- Dumping data for table `intend` -- INSERT INTO `intend` VALUES (1, 'To fully replace my previous web browser', 0); INSERT INTO `intend` VALUES (2, 'To use in addition to another web browser', 0); INSERT INTO `intend` VALUES (3, 'I just wanted to try it out', 0); INSERT INTO `intend` VALUES (4, 'Other (please specify)', 0); -- -------------------------------------------------------- -- -- Table structure for table `issue` -- CREATE TABLE `issue` ( `id` int(10) unsigned NOT NULL auto_increment, `description` varchar(255) collate utf8_unicode_ci NOT NULL default '', `pos` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=10 ; -- -- Dumping data for table `issue` -- INSERT INTO `issue` VALUES (1, 'Some web pages wouldn''t work', 0); INSERT INTO `issue` VALUES (2, 'Plugin compatibility (Flash, Adobe Acrobat, Windows Media Player, etc.)', 0); INSERT INTO `issue` VALUES (3, 'Performance (load delays, memory usage)', 0); INSERT INTO `issue` VALUES (4, 'Hard to use/confusing (menus, display, etc.)', 0); INSERT INTO `issue` VALUES (5, 'Missing features', 0); INSERT INTO `issue` VALUES (6, 'Security', 0); INSERT INTO `issue` VALUES (7, 'Some features didn''t work', 0); INSERT INTO `issue` VALUES (8, 'Printing', 0); INSERT INTO `issue` VALUES (9, 'Just temporary, I''m planning to install Firefox again soon', 10); -- -------------------------------------------------------- -- -- Table structure for table `issue_result_map` -- CREATE TABLE `issue_result_map` ( `result_id` bigint(20) unsigned NOT NULL default '0', `issue_id` int(10) unsigned NOT NULL default '0', `other` varchar(255) collate utf8_unicode_ci NOT NULL default '', PRIMARY KEY (`result_id`,`issue_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `issue_result_map` -- INSERT INTO `issue_result_map` VALUES (2, 9, 'asdfasdf'); INSERT INTO `issue_result_map` VALUES (2, 4, 'asdfasd'); INSERT INTO `issue_result_map` VALUES (2, 5, 'asdf'); INSERT INTO `issue_result_map` VALUES (2, 3, 'sdfasd'); INSERT INTO `issue_result_map` VALUES (2, 2, 'asdf'); INSERT INTO `issue_result_map` VALUES (2, 8, 'sdfasd'); INSERT INTO `issue_result_map` VALUES (2, 6, 'asdf'); INSERT INTO `issue_result_map` VALUES (2, 7, 'dfasd'); INSERT INTO `issue_result_map` VALUES (2, 1, 'asdfasdf'); -- -------------------------------------------------------- -- -- Table structure for table `result` -- CREATE TABLE `result` ( `id` bigint(20) unsigned NOT NULL auto_increment, `intend_id` int(10) unsigned NOT NULL default '0', `intend_text` varchar(255) collate utf8_unicode_ci NOT NULL default '', `product` varchar(255) collate utf8_unicode_ci NOT NULL default '', `useragent` varchar(255) collate utf8_unicode_ci NOT NULL default '', `http_user_agent` varchar(255) collate utf8_unicode_ci NOT NULL default '', `comments` text collate utf8_unicode_ci NOT NULL, `date_submitted` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ; -- -- Dumping data for table `result` -- INSERT INTO `result` VALUES (2, 0, 'asdfasdfasdf', 'Mozilla Firefox', '1.5 (en-US)', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b5) Gecko/20051023 Firefox/1.5', 'asdfasdfasdf', '2006-02-26 15:53:20');