Additional IRC commands and bot tasks for EarwigBot https://en.wikipedia.org/wiki/User:EarwigBot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.5 KiB

  1. -- MySQL dump 10.13 Distrib 5.5.12, for solaris10 (i386)
  2. --
  3. -- Host: sql Database: u_earwig_afc_statistics
  4. -- ------------------------------------------------------
  5. -- Server version 5.1.59
  6. CREATE DATABASE `u_earwig_afc_statistics`
  7. DEFAULT CHARACTER SET utf8
  8. DEFAULT COLLATE utf8_unicode_ci;
  9. --
  10. -- Table structure for table `chart`
  11. --
  12. DROP TABLE IF EXISTS `chart`;
  13. CREATE TABLE `chart` (
  14. `chart_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
  15. `chart_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  16. `chart_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  17. `chart_special_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  18. PRIMARY KEY (`chart_id`)
  19. ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  20. --
  21. -- Dumping data for table `chart`
  22. --
  23. LOCK TABLES `chart` WRITE;
  24. INSERT INTO `chart` VALUES
  25. (1,'pending','Pending submissions','Submitted'),
  26. (3,'reviewing','Being reviewed','Reviewer'),
  27. (4,'accepted','Recently accepted','Accepted'),
  28. (5,'declined','Recently declined','Declined'),
  29. (6,'misplaced','Misplaced submissions','Created');
  30. UNLOCK TABLES;
  31. --
  32. -- Table structure for table `row`
  33. --
  34. DROP TABLE IF EXISTS `row`;
  35. CREATE TABLE `row` (
  36. `row_id` int(10) unsigned NOT NULL,
  37. `row_chart` tinyint(3) unsigned DEFAULT NULL,
  38. PRIMARY KEY (`row_id`)
  39. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  40. --
  41. -- Table structure for table `page`
  42. --
  43. DROP TABLE IF EXISTS `page`;
  44. CREATE TABLE `page` (
  45. `page_id` int(10) unsigned NOT NULL,
  46. `page_status` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL,
  47. `page_title` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  48. `page_size` int(6) unsigned NOT NULL,
  49. `page_notes` tinytext COLLATE utf8_unicode_ci,
  50. `page_modify_user` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  51. `page_modify_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  52. `page_modify_oldid` int(10) unsigned DEFAULT NULL,
  53. `page_special_user` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  54. `page_special_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  55. `page_special_oldid` int(10) unsigned DEFAULT NULL,
  56. PRIMARY KEY (`page_id`)
  57. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  58. --
  59. -- Table structure for table `updatelog`
  60. --
  61. DROP TABLE IF EXISTS `updatelog`;
  62. CREATE TABLE `updatelog` (
  63. `update_id` int(10) unsigned NOT NULL,
  64. `update_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  65. PRIMARY KEY (`update_id`)
  66. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  67. -- Dump completed on 2014-01-10 11:00:00