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
This commit is contained in:
Roan Kattouw 2018-03-07 14:48:26 -08:00
parent 56d67bdc9c
commit 8bd0600b14

View 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*/;