tables.sql: Correct lie about ct_params being unused
authorRoan Kattouw <roan.kattouw@gmail.com>
Wed, 7 Mar 2018 22:48:26 +0000 (14:48 -0800)
committerRoan Kattouw <roan.kattouw@gmail.com>
Wed, 7 Mar 2018 22:48:26 +0000 (14:48 -0800)
It is used by ContentTranslation to store things like
{"from":"es","to":"en"}

Change-Id: I880ecc74ab46dde2fa00ddb7baea08edeabcf676

maintenance/tables.sql

index d633a9c..990ba3d 100644 (file)
@@ -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*/;