mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
10 lines
423 B
SQL
10 lines
423 B
SQL
CREATE TABLE /*_*/log_search (
|
|
-- The type of ID (rev ID, log ID, rev timestamp, username)
|
|
ls_field varbinary(32) NOT NULL,
|
|
-- The value of the ID
|
|
ls_value varchar(255) NOT NULL,
|
|
-- Key to log_id
|
|
ls_log_id int unsigned NOT NULL default 0
|
|
) /*$wgDBTableOptions*/;
|
|
CREATE UNIQUE INDEX /*i*/ls_field_val ON /*_*/log_search (ls_field,ls_value,ls_log_id);
|
|
CREATE INDEX /*i*/ls_log_id ON /*_*/log_search (ls_log_id);
|