data.sql 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. SET FOREIGN_KEY_CHECKS=0;
  2. -- ----------------------------
  3. -- Table structure for `pre_milu_seotool_included`
  4. -- ----------------------------
  5. DROP TABLE IF EXISTS `pre_milu_seotool_included`;
  6. CREATE TABLE `pre_milu_seotool_included` (
  7. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  8. `baidu_included` int(10) unsigned NOT NULL DEFAULT '0',
  9. `baidu_ping` int(10) NOT NULL DEFAULT '0',
  10. `baidu_spider_last` int(10) unsigned NOT NULL DEFAULT '0',
  11. `baidu_spider_count` mediumint(8) unsigned NOT NULL DEFAULT '0',
  12. `google_included` int(10) unsigned NOT NULL DEFAULT '0',
  13. `google_ping` int(10) NOT NULL DEFAULT '0',
  14. `google_spider_last` int(10) unsigned NOT NULL DEFAULT '0',
  15. `google_spider_count` mediumint(9) unsigned NOT NULL DEFAULT '0',
  16. `baidu_modify_dateline` int(10) unsigned NOT NULL DEFAULT '0',
  17. `google_modify_dateline` int(10) unsigned NOT NULL,
  18. `data_id` int(10) unsigned NOT NULL DEFAULT '0',
  19. `data_type` tinyint(1) unsigned zerofill NOT NULL DEFAULT '0',
  20. PRIMARY KEY (`id`)
  21. ) ENGINE=MyISAM AUTO_INCREMENT=1724 DEFAULT CHARSET=gbk;
  22. -- ----------------------------
  23. -- Records of pre_milu_seotool_included
  24. -- ----------------------------
  25. -- ----------------------------
  26. -- Table structure for `pre_milu_seotool_keyword`
  27. -- ----------------------------
  28. DROP TABLE IF EXISTS `pre_milu_seotool_keyword`;
  29. CREATE TABLE `pre_milu_seotool_keyword` (
  30. `kid` mediumint(9) unsigned NOT NULL AUTO_INCREMENT,
  31. `name` varchar(255) NOT NULL,
  32. `status` tinyint(1) unsigned NOT NULL,
  33. PRIMARY KEY (`kid`)
  34. ) ENGINE=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=gbk;
  35. -- ----------------------------
  36. -- Records of pre_milu_seotool_keyword
  37. -- ----------------------------
  38. -- ----------------------------
  39. -- Table structure for `pre_milu_seotool_keyword_rank`
  40. -- ----------------------------
  41. DROP TABLE IF EXISTS `pre_milu_seotool_keyword_rank`;
  42. CREATE TABLE `pre_milu_seotool_keyword_rank` (
  43. `rank` varchar(255) NOT NULL,
  44. `kid` mediumint(8) unsigned NOT NULL,
  45. `daytime` int(10) unsigned NOT NULL
  46. ) ENGINE=MyISAM DEFAULT CHARSET=gbk;
  47. -- ----------------------------
  48. -- Records of pre_milu_seotool_keyword_rank
  49. -- ----------------------------
  50. -- ----------------------------
  51. -- Table structure for `pre_milu_seotool_spider`
  52. -- ----------------------------
  53. DROP TABLE IF EXISTS `pre_milu_seotool_spider`;
  54. CREATE TABLE `pre_milu_seotool_spider` (
  55. `id` int(11) NOT NULL AUTO_INCREMENT,
  56. `spider_type` tinyint(1) unsigned NOT NULL,
  57. `dateline` int(10) unsigned NOT NULL,
  58. `page_url` varchar(255) NOT NULL,
  59. `page_title` varchar(255) NOT NULL,
  60. `group_child_id` tinyint(1) unsigned NOT NULL,
  61. `group_parent_id` tinyint(1) unsigned NOT NULL,
  62. `status` tinyint(1) unsigned NOT NULL,
  63. PRIMARY KEY (`id`)
  64. ) ENGINE=MyISAM AUTO_INCREMENT=1134 DEFAULT CHARSET=gbk;
  65. -- ----------------------------
  66. -- Records of pre_milu_seotool_spider
  67. -- ----------------------------