wiki.techinc.nl/maintenance/archives/patch-langlinks.sql
umherirrender e256c69f9a Remove a bunch of trailing spaces and unneeded newlines
Change-Id: If9fb04f64389b9b40c13f3372ad4792c2e14def0
2012-10-20 13:35:38 +02:00

14 lines
384 B
SQL

CREATE TABLE /*$wgDBprefix*/langlinks (
-- page_id of the referring page
ll_from int unsigned NOT NULL default '0',
-- Language code of the target
ll_lang varbinary(20) NOT NULL default '',
-- Title of the target, including namespace
ll_title varchar(255) binary NOT NULL default '',
UNIQUE KEY (ll_from, ll_lang),
KEY (ll_lang, ll_title)
) /*$wgDBTableOptions*/;