From: Roan Kattouw Date: Wed, 7 Mar 2018 22:48:26 +0000 (-0800) Subject: tables.sql: Correct lie about ct_params being unused X-Git-Tag: 1.31.0-rc.0~422^2 X-Git-Url: http://git.cyclocoop.org//%27http:/code.google.com/p/ie7-js//%27?a=commitdiff_plain;h=8bd0600b14c89e002b72c7acfa52a28bd66ce3e3;p=lhc%2Fweb%2Fwiklou.git tables.sql: Correct lie about ct_params being unused It is used by ContentTranslation to store things like {"from":"es","to":"en"} Change-Id: I880ecc74ab46dde2fa00ddb7baea08edeabcf676 --- diff --git a/maintenance/tables.sql b/maintenance/tables.sql index d633a9c209..990ba3db0a 100644 --- a/maintenance/tables.sql +++ b/maintenance/tables.sql @@ -1835,7 +1835,7 @@ CREATE TABLE /*_*/change_tag ( ct_rev_id int unsigned NULL, -- Tag applied ct_tag varchar(255) NOT NULL, - -- Parameters for the tag, presently unused + -- Parameters for the tag; used by some extensions ct_params blob NULL ) /*$wgDBTableOptions*/;