-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from cluebotng/feature/more-work
More experimentation
- Loading branch information
Showing
21 changed files
with
241 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.idea | ||
*.iml | ||
cbng.log* | ||
botng.log* | ||
vendor/ | ||
config.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,82 +1,33 @@ | ||
-- MySQL dump 10.11 | ||
-- | ||
-- Host: localhost Database: cluebot_enwiki | ||
-- ------------------------------------------------------ | ||
-- Server version 5.0.32-Debian_7etch3-log | ||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | ||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | ||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | ||
/*!40101 SET NAMES utf8 */; | ||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; | ||
/*!40103 SET TIME_ZONE='+00:00' */; | ||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; | ||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; | ||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; | ||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; | ||
-- | ||
-- Table structure for table `beaten` | ||
-- | ||
DROP TABLE IF EXISTS `beaten`; | ||
CREATE TABLE `beaten` | ||
CREATE TABLE IF NOT EXISTS `beaten` | ||
( | ||
`id` int(11) NOT NULL auto_increment, | ||
`id` int(11) NOT NULL auto_increment, | ||
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, | ||
`article` varchar(256) NOT NULL, | ||
`diff` varchar(512) NOT NULL, | ||
`user` varchar(256) NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | ||
-- | ||
-- Table structure for table `trr` | ||
-- | ||
DROP TABLE IF EXISTS `trr`; | ||
CREATE TABLE `trr` | ||
|
||
CREATE TABLE IF NOT EXISTS `vandalism` | ||
( | ||
`id` int(11) NOT NULL auto_increment, | ||
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, | ||
`user` varchar(256) NOT NULL, | ||
`title` varchar(256) NOT NULL, | ||
`url` varchar(512) NOT NULL, | ||
`revid` int(11) NOT NULL, | ||
`md5` char(32) default NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=MyISAM AUTO_INCREMENT=488749 DEFAULT CHARSET=latin1; | ||
-- | ||
-- Table structure for table `vandalism` | ||
-- | ||
DROP TABLE IF EXISTS `vandalism`; | ||
CREATE TABLE `vandalism` | ||
( | ||
`id` int(11) NOT NULL auto_increment, | ||
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, | ||
`user` varchar(256) NOT NULL, | ||
`article` varchar(256) NOT NULL, | ||
`heuristic` varchar(64) NOT NULL, | ||
`regex` varchar(2048) default NULL, | ||
`reason` varchar(512) NOT NULL, | ||
`diff` varchar(512) NOT NULL, | ||
`old_id` int(11) NOT NULL, | ||
`new_id` int(11) NOT NULL, | ||
`reverted` tinyint(1) NOT NULL, | ||
`id` int(11) NOT NULL auto_increment, | ||
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, | ||
`user` varchar(256) NOT NULL, | ||
`article` varchar(256) NOT NULL, | ||
`heuristic` varchar(64) NOT NULL, | ||
`regex` varchar(2048) default NULL, | ||
`reason` varchar(512) NOT NULL, | ||
`diff` varchar(512) NOT NULL, | ||
`old_id` int(11) NOT NULL, | ||
`new_id` int(11) NOT NULL, | ||
`reverted` tinyint(1) NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | ||
-- | ||
-- Table structure for table `cluster_node` | ||
-- | ||
DROP TABLE IF EXISTS `cluster_node`; | ||
CREATE TABLE `cluster_node` | ||
|
||
CREATE TABLE IF NOT EXISTS `last_revert` | ||
( | ||
`node` varchar(256) NOT NULL, | ||
`port` int(11) NOT NULL, | ||
`type` varchar(256) NOT NULL, | ||
PRIMARY KEY (`type`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1; | ||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; | ||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; | ||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; | ||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; | ||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; | ||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; | ||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; | ||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; | ||
-- Dump completed on 2008-01-14 2:31:27 | ||
`title` varchar(256) NOT NULL, | ||
`user` varchar(256) NOT NULL, | ||
`time` int NOT NULL, | ||
PRIMARY KEY (`title`, `user`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.