MWX/SpamFerret/tables/text

From Woozle Writes Code
< MWX‎ | SpamFerret‎ | tables
Revision as of 20:10, 1 May 2022 by Woozle (talk | contribs) (2 revisions imported: moving here)
Jump to navigation Jump to search

About

  • Purpose: for storing complete text of edit attempts and page contents
  • History:
    • 2009-08-07 Designed; not deployed yet

SQL

<mysql>CREATE TABLE `text` (

 `CRC`        INT UNSIGNED NOT NULL COMMENT "crc32(text) for faster indexing",
 `ctext`      MEDIUMBLOB COMMENT "compressed form of text",
 PRIMARY KEY(`CRC`)

) ENGINE = MYISAM;</mysql>