Merge "Fix possible error texts in action=options"
[mediawiki.git] / maintenance / ibm_db2 / patch-log_search-rename-index.sql
bloba6a696e1d1d842bbae9f91492d6f05dfe526c285
1 CREATE TABLE log_search (
2   -- The type of ID (rev ID, log ID, rev TIMESTAMP(3), username)
3   ls_field VARCHAR(32) FOR BIT DATA NOT NULL,
4   -- The value of the ID
5   ls_value varchar(255) NOT NULL,
6   -- Key to log_id
7   ls_log_id BIGINT NOT NULL default 0
8 );