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.
 
 

37 lines
1.1 KiB

  1. -- MySQL dump 10.13 Distrib 5.5.12, for solaris10 (i386)
  2. --
  3. -- Host: sql Database: u_earwig_afc_copyvios
  4. -- ------------------------------------------------------
  5. -- Server version 5.1.59
  6. CREATE DATABASE `u_earwig_afc_copyvios`
  7. DEFAULT CHARACTER SET utf8
  8. DEFAULT COLLATE utf8_unicode_ci;
  9. --
  10. -- Table structure for table `cache`
  11. --
  12. DROP TABLE IF EXISTS `cache`;
  13. CREATE TABLE `cache` (
  14. `cache_id` int(10) unsigned NOT NULL,
  15. `cache_hash` char(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  16. `cache_url` varchar(512) COLLATE utf8_unicode_ci DEFAULT NULL,
  17. `cache_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  18. `cache_queries` int(4) DEFAULT NULL,
  19. `cache_process_time` float DEFAULT NULL,
  20. PRIMARY KEY (`cache_id`)
  21. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  22. --
  23. -- Table structure for table `processed`
  24. --
  25. DROP TABLE IF EXISTS `processed`;
  26. CREATE TABLE `processed` (
  27. `page_id` int(10) unsigned NOT NULL,
  28. PRIMARY KEY (`page_id`)
  29. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  30. -- Dump completed on 2012-07-20 20:21:00