Additional IRC commands and bot tasks for EarwigBot https://en.wikipedia.org/wiki/User:EarwigBot
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

60 rindas
2.2 KiB

  1. -- MySQL dump 10.13 Distrib 5.5.12, for solaris10 (i386)
  2. --
  3. -- Host: sql Database: u_earwig_drn_clerkbot
  4. -- ------------------------------------------------------
  5. -- Server version 5.1.59
  6. CREATE DATABASE `u_earwig_drn_clerkbot`
  7. DEFAULT CHARACTER SET utf8
  8. DEFAULT COLLATE utf8_unicode_ci;
  9. --
  10. -- Table structure for table `case`
  11. --
  12. DROP TABLE IF EXISTS `cases`;
  13. CREATE TABLE `cases` (
  14. `case_id` int(10) unsigned NOT NULL,
  15. `case_title` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  16. `case_status` int(2) unsigned DEFAULT NULL,
  17. `case_last_action` int(2) unsigned DEFAULT NULL,
  18. `case_file_user` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  19. `case_file_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  20. `case_modify_user` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  21. `case_modify_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  22. `case_volunteer_user` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  23. `case_volunteer_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  24. `case_close_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  25. `case_parties_notified` tinyint(1) unsigned DEFAULT NULL,
  26. `case_very_old_notified` tinyint(1) unsigned DEFAULT NULL,
  27. `case_archived` tinyint(1) unsigned DEFAULT NULL,
  28. `case_last_volunteer_size` int(9) unsigned DEFAULT NULL,
  29. PRIMARY KEY (`case_id`)
  30. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  31. --
  32. -- Table structure for table `signature`
  33. --
  34. DROP TABLE IF EXISTS `signatures`;
  35. CREATE TABLE `signatures` (
  36. `signature_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  37. `signature_case` int(10) unsigned NOT NULL,
  38. `signature_username` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  39. `signature_timestamp` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  40. PRIMARY KEY (`signature_id`)
  41. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  42. --
  43. -- Table structure for table `volunteer`
  44. --
  45. DROP TABLE IF EXISTS `volunteers`;
  46. CREATE TABLE `volunteers` (
  47. `volunteer_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  48. `volunteer_username` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  49. PRIMARY KEY (`volunteer_id`)
  50. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  51. -- Dump completed on 2012-07-31 1:34:28