Update jquery.tablesorter for r97145: emulate <thead> if there is no <thead> in the...
[mediawiki.git] / maintenance / archives / patch-globalnamespaces.sql
blob91b3578f6ab64c3feb9e9079485cd5706cdd7096
1 -- Table listing distant wiki namespace texts.
2 CREATE TABLE /*_*/globalnamespaces (
3   -- The wiki ID of the remote wiki
4   gn_wiki varchar(64) NOT NULL,
6   -- The namespace ID of the transcluded page on that wiki
7   gn_namespace int NOT NULL,
9   -- The namespace text of transcluded page
10   -- Needed for display purposes, since the local namespace ID doesn't necessarily match a distant one
11   gn_namespacetext varchar(255) NOT NULL
13 ) /*$wgDBTableOptions*/;
14 CREATE UNIQUE INDEX /*i*/gn_index ON /*_*/globalnamespaces (gn_wiki, gn_namespace, gn_namespacetext);