Merge "Re add wpScrolltop id in EditPage"
[lhc/web/wiklou.git] / maintenance / archives / patch-langlinks.sql
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 '',
7
8 -- Title of the target, including namespace
9 ll_title varchar(255) binary NOT NULL default '',
10
11 UNIQUE KEY (ll_from, ll_lang),
12 KEY (ll_lang, ll_title)
13 ) /*$wgDBTableOptions*/;
14