Additional IRC commands and bot tasks for EarwigBot https://en.wikipedia.org/wiki/User:EarwigBot
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

69 Zeilen
2.2 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_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  16. `chart_special_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  17. PRIMARY KEY (`chart_id`)
  18. ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  19. --
  20. -- Dumping data for table `chart`
  21. --
  22. LOCK TABLES `chart` WRITE;
  23. INSERT INTO `chart` VALUES
  24. (1,'Pending submissions','Submitted'),
  25. (3,'Being reviewed','Reviewer'),
  26. (4,'Recently accepted','Accepted'),
  27. (5,'Recently declined','Declined'),
  28. (6,'Misplaced submissions','Created');
  29. UNLOCK TABLES;
  30. --
  31. -- Table structure for table `row`
  32. --
  33. DROP TABLE IF EXISTS `row`;
  34. CREATE TABLE `row` (
  35. `row_id` int(10) unsigned NOT NULL,
  36. `row_chart` tinyint(3) unsigned DEFAULT NULL,
  37. PRIMARY KEY (`row_id`)
  38. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  39. --
  40. -- Table structure for table `page`
  41. --
  42. DROP TABLE IF EXISTS `page`;
  43. CREATE TABLE `page` (
  44. `page_id` int(10) unsigned NOT NULL,
  45. `page_status` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL,
  46. `page_title` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  47. `page_short` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  48. `page_size` varchar(16) COLLATE utf8_unicode_ci DEFAULT 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. -- Dump completed on 2012-07-20 20:25:10