Don't load all languages just to check whether message is known.
[mediawiki.git] / maintenance / archives / patch-langlinks.sql
blobffff07c0ae6caa964be5611c09ba40511f33d380
1 CREATE TABLE /*$wgDBprefix*/langlinks (
2   -- page_id of the referring page
3   ll_from int unsigned NOT NULL default '0',
4   
5   -- Language code of the target
6   ll_lang varbinary(20) NOT NULL default '',
8   -- Title of the target, including namespace
9   ll_title varchar(255) binary NOT NULL default '',
11   UNIQUE KEY (ll_from, ll_lang),
12   KEY (ll_lang, ll_title)
13 ) /*$wgDBTableOptions*/;