MWX/SpamFerret/tables/text: Difference between revisions

From Woozle Writes Code
< MWX‎ | SpamFerret‎ | tables
Jump to navigation Jump to search
m (fixed SQL for table name)
m (Woozle moved page SpamFerret/tables/text to MWX/SpamFerret/tables/text without leaving a redirect: most mediawiki extensions belong under MWX now)
 
(One intermediate revision by the same user not shown)
(No difference)

Latest revision as of 20:14, 1 May 2022

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>