MWX/SpamFerret/tables/pattern

From Woozle Writes Code
< MWX‎ | SpamFerret‎ | tables
Revision as of 00:56, 4 February 2011 by Woozle (talk | contribs) (adapted from [patterns])
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • History:
    • 2009-07-14 Adding attempts.diff and patterns.isDiff to enable more advanced filtering (e.g. bots which delete most of a section and replace it with a nonsense word)
    • 2009-08-05 Adding ID_Archive field (part of new pattern maintenance system)
    • 2009-10-06 Adding Notes field (need to be able to make notes on a pattern's intent)
    • 2011-02-03 Adapting from Template:Spamferret -- basically the same, but without any activity or status fields, since this table now holds only active patterns

SQL

<mysql>CREATE TABLE `pattern` (

 `ID` INT NOT NULL AUTO_INCREMENT,
 `Pattern`   VARCHAR(255)             COMMENT "pattern to match (regex or straight text match)",
 `ID_Archive` INT         NOT NULL    COMMENT "pattern_archive.ID of source for this pattern",
 `isURL`     TINYINT(1)               COMMENT "TRUE indicates that additional URL-related stats may be collected",
 `isRegex`   TINYINT(1)               COMMENT "TRUE = regex (use preg_match()); FALSE = normal string comparison (use stristr())",
 `isDiff`    TINYINT(1) DEFAULT FALSE COMMENT "TRUE = pattern should be compared to the diff, not the edit contents",
 `WhenTried` DATETIME   DEFAULT NULL  COMMENT "when a spammer last attempted to include this pattern",
 `Count`     INT        DEFAULT 0     COMMENT "number of attempts since pattern was activated",
 PRIMARY KEY(`ID`)

) ENGINE = MYISAM;</mysql>