-- MySQL dump 10.11 -- -- Host: localhost Database: mediawiki -- ------------------------------------------------------ -- Server version 5.0.51a-24 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `archive` -- DROP TABLE IF EXISTS `archive`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `archive` ( `ar_namespace` int(11) NOT NULL default '0', `ar_title` varchar(255) character set latin1 collate latin1_bin NOT NULL default '', `ar_text` mediumblob NOT NULL, `ar_comment` tinyblob NOT NULL, `ar_user` int(10) unsigned NOT NULL default '0', `ar_user_text` varchar(255) character set latin1 collate latin1_bin NOT NULL, `ar_timestamp` binary(14) NOT NULL default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `ar_minor_edit` tinyint(4) NOT NULL default '0', `ar_flags` tinyblob NOT NULL, `ar_rev_id` int(10) unsigned default NULL, `ar_text_id` int(10) unsigned default NULL, `ar_deleted` tinyint(3) unsigned NOT NULL default '0', `ar_len` int(10) unsigned default NULL, `ar_page_id` int(10) unsigned default NULL, KEY `name_title_timestamp` (`ar_namespace`,`ar_title`,`ar_timestamp`), KEY `usertext_timestamp` (`ar_user_text`,`ar_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `archive` -- LOCK TABLES `archive` WRITE; /*!40000 ALTER TABLE `archive` DISABLE KEYS */; /*!40000 ALTER TABLE `archive` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categorylinks` -- DROP TABLE IF EXISTS `categorylinks`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `categorylinks` ( `cl_from` int(10) unsigned NOT NULL default '0', `cl_to` varchar(255) character set latin1 collate latin1_bin NOT NULL default '', `cl_sortkey` varchar(70) character set latin1 collate latin1_bin NOT NULL default '', `cl_timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, UNIQUE KEY `cl_from` (`cl_from`,`cl_to`), KEY `cl_sortkey` (`cl_to`,`cl_sortkey`,`cl_from`), KEY `cl_timestamp` (`cl_to`,`cl_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `categorylinks` -- LOCK TABLES `categorylinks` WRITE; /*!40000 ALTER TABLE `categorylinks` DISABLE KEYS */; /*!40000 ALTER TABLE `categorylinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `externallinks` -- DROP TABLE IF EXISTS `externallinks`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `externallinks` ( `el_from` int(10) unsigned NOT NULL default '0', `el_to` blob NOT NULL, `el_index` blob NOT NULL, KEY `el_from` (`el_from`,`el_to`(40)), KEY `el_to` (`el_to`(60),`el_from`), KEY `el_index` (`el_index`(60)) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `externallinks` -- LOCK TABLES `externallinks` WRITE; /*!40000 ALTER TABLE `externallinks` DISABLE KEYS */; /*!40000 ALTER TABLE `externallinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `filearchive` -- DROP TABLE IF EXISTS `filearchive`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `filearchive` ( `fa_id` int(11) NOT NULL auto_increment, `fa_name` varchar(255) character set latin1 collate latin1_bin NOT NULL default '', `fa_archive_name` varchar(255) character set latin1 collate latin1_bin default '', `fa_storage_group` varbinary(16) default NULL, `fa_storage_key` varbinary(64) default '', `fa_deleted_user` int(11) default NULL, `fa_deleted_timestamp` binary(14) default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `fa_deleted_reason` text, `fa_size` int(10) unsigned default '0', `fa_width` int(11) default '0', `fa_height` int(11) default '0', `fa_metadata` mediumblob, `fa_bits` int(11) default '0', `fa_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE') default NULL, `fa_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart') default 'unknown', `fa_minor_mime` varbinary(32) default 'unknown', `fa_description` tinyblob, `fa_user` int(10) unsigned default '0', `fa_user_text` varchar(255) character set latin1 collate latin1_bin default NULL, `fa_timestamp` binary(14) default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `fa_deleted` tinyint(3) unsigned NOT NULL default '0', PRIMARY KEY (`fa_id`), KEY `fa_name` (`fa_name`,`fa_timestamp`), KEY `fa_storage_group` (`fa_storage_group`,`fa_storage_key`), KEY `fa_deleted_timestamp` (`fa_deleted_timestamp`), KEY `fa_deleted_user` (`fa_deleted_user`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `filearchive` -- LOCK TABLES `filearchive` WRITE; /*!40000 ALTER TABLE `filearchive` DISABLE KEYS */; /*!40000 ALTER TABLE `filearchive` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `hitcounter` -- DROP TABLE IF EXISTS `hitcounter`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `hitcounter` ( `hc_id` int(10) unsigned NOT NULL ) ENGINE=MEMORY DEFAULT CHARSET=latin1 MAX_ROWS=25000; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `hitcounter` -- LOCK TABLES `hitcounter` WRITE; /*!40000 ALTER TABLE `hitcounter` DISABLE KEYS */; /*!40000 ALTER TABLE `hitcounter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `image` -- DROP TABLE IF EXISTS `image`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `image` ( `img_name` varchar(255) character set latin1 collate latin1_bin NOT NULL default '', `img_size` int(10) unsigned NOT NULL default '0', `img_width` int(11) NOT NULL default '0', `img_height` int(11) NOT NULL default '0', `img_metadata` mediumblob NOT NULL, `img_bits` int(11) NOT NULL default '0', `img_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE') default NULL, `img_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart') NOT NULL default 'unknown', `img_minor_mime` varbinary(32) NOT NULL default 'unknown', `img_description` tinyblob NOT NULL, `img_user` int(10) unsigned NOT NULL default '0', `img_user_text` varchar(255) character set latin1 collate latin1_bin NOT NULL, `img_timestamp` varbinary(14) NOT NULL default '', `img_sha1` varbinary(32) NOT NULL default '', PRIMARY KEY (`img_name`), KEY `img_usertext_timestamp` (`img_user_text`,`img_timestamp`), KEY `img_size` (`img_size`), KEY `img_timestamp` (`img_timestamp`), KEY `img_sha1` (`img_sha1`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `image` -- LOCK TABLES `image` WRITE; /*!40000 ALTER TABLE `image` DISABLE KEYS */; /*!40000 ALTER TABLE `image` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `imagelinks` -- DROP TABLE IF EXISTS `imagelinks`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `imagelinks` ( `il_from` int(10) unsigned NOT NULL default '0', `il_to` varchar(255) character set latin1 collate latin1_bin NOT NULL default '', UNIQUE KEY `il_from` (`il_from`,`il_to`), KEY `il_to` (`il_to`,`il_from`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `imagelinks` -- LOCK TABLES `imagelinks` WRITE; /*!40000 ALTER TABLE `imagelinks` DISABLE KEYS */; /*!40000 ALTER TABLE `imagelinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `interwiki` -- DROP TABLE IF EXISTS `interwiki`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `interwiki` ( `iw_prefix` varchar(32) NOT NULL, `iw_url` blob NOT NULL, `iw_local` tinyint(1) NOT NULL, `iw_trans` tinyint(4) NOT NULL default '0', UNIQUE KEY `iw_prefix` (`iw_prefix`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `interwiki` -- LOCK TABLES `interwiki` WRITE; /*!40000 ALTER TABLE `interwiki` DISABLE KEYS */; INSERT INTO `interwiki` VALUES ('abbenormal','http://www.ourpla.net/cgi-bin/pikie.cgi?$1',0,0),('acronym','http://www.acronymfinder.com/af-query.asp?String=exact&Acronym=$1',0,0),('advogato','http://www.advogato.org/$1',0,0),('aiwiki','http://www.ifi.unizh.ch/ailab/aiwiki/aiw.cgi?$1',0,0),('annotationwiki','http://www.seedwiki.com/page.cfm?wikiid=368&doc=$1',0,0),('arxiv','http://www.arxiv.org/abs/$1',0,0),('bemi','http://bemi.free.fr/vikio/index.php?$1',0,0),('c2find','http://c2.com/cgi/wiki?FindPage&value=$1',0,0),('cache','http://www.google.com/search?q=cache:$1',0,0),('cliki','http://ww.telent.net/cliki/$1',0,0),('cmwiki','http://www.ourpla.net/cgi-bin/wiki.pl?$1',0,0),('codersbase','http://www.codersbase.com/index.php/$1',0,0),('commons','http://commons.wikimedia.org/wiki/$1',0,0),('consciousness','http://teadvus.inspiral.org/',0,0),('corpknowpedia','http://corpknowpedia.org/wiki/index.php/$1',0,0),('creationmatters','http://www.ourpla.net/cgi-bin/wiki.pl?$1',0,0),('dejanews','http://www.deja.com/=dnc/getdoc.xp?AN=$1',0,0),('dictionary','http://www.dict.org/bin/Dict?Database=*&Form=Dict1&Strategy=*&Query=$1',0,0),('disinfopedia','http://www.disinfopedia.org/wiki.phtml?title=$1',0,0),('diveintoosx','http://diveintoosx.org/$1',0,0),('docbook','http://wiki.docbook.org/topic/$1',0,0),('dolphinwiki','http://www.object-arts.com/wiki/html/Dolphin/$1',0,0),('drumcorpswiki','http://www.drumcorpswiki.com/index.php/$1',0,0),('dwjwiki','http://www.suberic.net/cgi-bin/dwj/wiki.cgi?$1',0,0),('echei','http://www.ikso.net/cgi-bin/wiki.pl?$1',0,0),('ecxei','http://www.ikso.net/cgi-bin/wiki.pl?$1',0,0),('efnetceewiki','http://purl.net/wiki/c/$1',0,0),('efnetcppwiki','http://purl.net/wiki/cpp/$1',0,0),('efnetpythonwiki','http://purl.net/wiki/python/$1',0,0),('efnetxmlwiki','http://purl.net/wiki/xml/$1',0,0),('elibre','http://enciclopedia.us.es/index.php/$1',0,0),('eljwiki','http://elj.sourceforge.net/phpwiki/index.php/$1',0,0),('emacswiki','http://www.emacswiki.org/cgi-bin/wiki.pl?$1',0,0),('eokulturcentro','http://esperanto.toulouse.free.fr/wakka.php?wiki=$1',0,0),('evowiki','http://www.evowiki.org/index.php/$1',0,0),('eĉei','http://www.ikso.net/cgi-bin/wiki.pl?$1',0,0),('finalempire','http://final-empire.sourceforge.net/cgi-bin/wiki.pl?$1',0,0),('firstwiki','http://firstwiki.org/index.php/$1',0,0),('foldoc','http://www.foldoc.org/foldoc/foldoc.cgi?$1',0,0),('foxwiki','http://fox.wikis.com/wc.dll?Wiki~$1',0,0),('fr.be','http://fr.wikinations.be/$1',0,0),('fr.ca','http://fr.ca.wikinations.org/$1',0,0),('fr.fr','http://fr.fr.wikinations.org/$1',0,0),('fr.org','http://fr.wikinations.org/$1',0,0),('freebsdman','http://www.FreeBSD.org/cgi/man.cgi?apropos=1&query=$1',0,0),('gamewiki','http://gamewiki.org/wiki/index.php/$1',0,0),('gej','http://www.esperanto.de/cgi-bin/aktivikio/wiki.pl?$1',0,0),('gentoo-wiki','http://gentoo-wiki.com/$1',0,0),('globalvoices','http://cyber.law.harvard.edu/dyn/globalvoices/wiki/$1',0,0),('gmailwiki','http://www.gmailwiki.com/index.php/$1',0,0),('google','http://www.google.com/search?q=$1',0,0),('googlegroups','http://groups.google.com/groups?q=$1',0,0),('gotamac','http://www.got-a-mac.org/$1',0,0),('greencheese','http://www.greencheese.org/$1',0,0),('hammondwiki','http://www.dairiki.org/HammondWiki/index.php3?$1',0,0),('haribeau','http://wiki.haribeau.de/cgi-bin/wiki.pl?$1',0,0),('herzkinderwiki','http://www.herzkinderinfo.de/Mediawiki/index.php/$1',0,0),('hewikisource','http://he.wikisource.org/wiki/$1',1,0),('hrwiki','http://www.hrwiki.org/index.php/$1',0,0),('iawiki','http://www.IAwiki.net/$1',0,0),('imdb','http://us.imdb.com/Title?$1',0,0),('infosecpedia','http://www.infosecpedia.org/pedia/index.php/$1',0,0),('jargonfile','http://sunir.org/apps/meta.pl?wiki=JargonFile&redirect=$1',0,0),('jefo','http://www.esperanto-jeunes.org/vikio/index.php?$1',0,0),('jiniwiki','http://www.cdegroot.com/cgi-bin/jini?$1',0,0),('jspwiki','http://www.ecyrd.com/JSPWiki/Wiki.jsp?page=$1',0,0),('keiki','http://kei.ki/en/$1',0,0),('kerimwiki','http://wiki.oxus.net/$1',0,0),('kmwiki','http://www.voght.com/cgi-bin/pywiki?$1',0,0),('knowhow','http://www2.iro.umontreal.ca/~paquetse/cgi-bin/wiki.cgi?$1',0,0),('lanifexwiki','http://opt.lanifex.com/cgi-bin/wiki.pl?$1',0,0),('lasvegaswiki','http://wiki.gmnow.com/index.php/$1',0,0),('linuxwiki','http://www.linuxwiki.de/$1',0,0),('lojban','http://www.lojban.org/tiki/tiki-index.php?page=$1',0,0),('lqwiki','http://wiki.linuxquestions.org/wiki/$1',0,0),('lugkr','http://lug-kr.sourceforge.net/cgi-bin/lugwiki.pl?$1',0,0),('lutherwiki','http://www.lutheranarchives.com/mw/index.php/$1',0,0),('mathsongswiki','http://SeedWiki.com/page.cfm?wikiid=237&doc=$1',0,0),('mbtest','http://www.usemod.com/cgi-bin/mbtest.pl?$1',0,0),('meatball','http://www.usemod.com/cgi-bin/mb.pl?$1',0,0),('mediawikiwiki','http://www.mediawiki.org/wiki/$1',0,0),('mediazilla','http://bugzilla.wikipedia.org/$1',1,0),('memoryalpha','http://www.memory-alpha.org/en/index.php/$1',0,0),('metaweb','http://www.metaweb.com/wiki/wiki.phtml?title=$1',0,0),('metawiki','http://sunir.org/apps/meta.pl?$1',0,0),('metawikipedia','http://meta.wikimedia.org/wiki/$1',0,0),('moinmoin','http://purl.net/wiki/moin/$1',0,0),('mozillawiki','http://wiki.mozilla.org/index.php/$1',0,0),('muweb','http://www.dunstable.com/scripts/MuWebWeb?$1',0,0),('netvillage','http://www.netbros.com/?$1',0,0),('oeis','http://www.research.att.com/cgi-bin/access.cgi/as/njas/sequences/eisA.cgi?Anum=$1',0,0),('openfacts','http://openfacts.berlios.de/index.phtml?title=$1',0,0),('openwiki','http://openwiki.com/?$1',0,0),('opera7wiki','http://nontroppo.org/wiki/$1',0,0),('orgpatterns','http://www.bell-labs.com/cgi-user/OrgPatterns/OrgPatterns?$1',0,0),('osi reference model','http://wiki.tigma.ee/',0,0),('pangalacticorg','http://www.pangalactic.org/Wiki/$1',0,0),('patwiki','http://gauss.ffii.org/$1',0,0),('personaltelco','http://www.personaltelco.net/index.cgi/$1',0,0),('phpwiki','http://phpwiki.sourceforge.net/phpwiki/index.php?$1',0,0),('pikie','http://pikie.darktech.org/cgi/pikie?$1',0,0),('pmeg','http://www.bertilow.com/pmeg/$1.php',0,0),('ppr','http://c2.com/cgi/wiki?$1',0,0),('purlnet','http://purl.oclc.org/NET/$1',0,0),('pythoninfo','http://www.python.org/cgi-bin/moinmoin/$1',0,0),('pythonwiki','http://www.pythonwiki.de/$1',0,0),('pywiki','http://www.voght.com/cgi-bin/pywiki?$1',0,0),('raec','http://www.raec.clacso.edu.ar:8080/raec/Members/raecpedia/$1',0,0),('revo','http://purl.org/NET/voko/revo/art/$1.html',0,0),('rfc','http://www.rfc-editor.org/rfc/rfc$1.txt',0,0),('s23wiki','http://is-root.de/wiki/index.php/$1',0,0),('scoutpedia','http://www.scoutpedia.info/index.php/$1',0,0),('seapig','http://www.seapig.org/$1',0,0),('seattlewiki','http://seattlewiki.org/wiki/$1',0,0),('seattlewireless','http://seattlewireless.net/?$1',0,0),('seeds','http://www.IslandSeeds.org/wiki/$1',0,0),('senseislibrary','http://senseis.xmp.net/?$1',0,0),('shakti','http://cgi.algonet.se/htbin/cgiwrap/pgd/ShaktiWiki/$1',0,0),('slashdot','http://slashdot.org/article.pl?sid=$1',0,0),('smikipedia','http://www.smikipedia.org/$1',0,0),('sockwiki','http://wiki.socklabs.com/$1',0,0),('sourceforge','http://sourceforge.net/$1',0,0),('squeak','http://minnow.cc.gatech.edu/squeak/$1',0,0),('strikiwiki','http://ch.twi.tudelft.nl/~mostert/striki/teststriki.pl?$1',0,0),('susning','http://www.susning.nu/$1',0,0),('svgwiki','http://www.protocol7.com/svg-wiki/default.asp?$1',0,0),('tavi','http://tavi.sourceforge.net/$1',0,0),('tejo','http://www.tejo.org/vikio/$1',0,0),('terrorwiki','http://www.liberalsagainstterrorism.com/wiki/index.php/$1',0,0),('theopedia','http://www.theopedia.com/$1',0,0),('tmbw','http://www.tmbw.net/wiki/index.php/$1',0,0),('tmnet','http://www.technomanifestos.net/?$1',0,0),('tmwiki','http://www.EasyTopicMaps.com/?page=$1',0,0),('turismo','http://www.tejo.org/turismo/$1',0,0),('twiki','http://twiki.org/cgi-bin/view/$1',0,0),('twistedwiki','http://purl.net/wiki/twisted/$1',0,0),('uea','http://www.tejo.org/uea/$1',0,0),('unreal','http://wiki.beyondunreal.com/wiki/$1',0,0),('ursine','http://wiki.ursine.ca/$1',0,0),('usej','http://www.tejo.org/usej/$1',0,0),('usemod','http://www.usemod.com/cgi-bin/wiki.pl?$1',0,0),('vinismo','http://vinismo.com/en/$1',0,0),('visualworks','http://wiki.cs.uiuc.edu/VisualWorks/$1',0,0),('warpedview','http://www.warpedview.com/index.php/$1',0,0),('webdevwikinl','http://www.promo-it.nl/WebDevWiki/index.php?page=$1',0,0),('webisodes','http://www.webisodes.org/$1',0,0),('webseitzwiki','http://webseitz.fluxent.com/wiki/$1',0,0),('why','http://clublet.com/c/c/why?$1',0,0),('wiki','http://c2.com/cgi/wiki?$1',0,0),('wikia','http://www.wikia.com/wiki/$1',0,0),('wikibooks','http://en.wikibooks.org/wiki/$1',1,0),('wikicities','http://www.wikicities.com/index.php/$1',0,0),('wikif1','http://www.wikif1.org/$1',0,0),('wikihow','http://www.wikihow.com/$1',0,0),('wikimedia','http://wikimediafoundation.org/wiki/$1',0,0),('wikinews','http://en.wikinews.org/wiki/$1',1,0),('wikinfo','http://www.wikinfo.org/index.php/$1',0,0),('wikipedia','http://en.wikipedia.org/wiki/$1',1,0),('wikiquote','http://en.wikiquote.org/wiki/$1',1,0),('wikisource','http://sources.wikipedia.org/wiki/$1',1,0),('wikispecies','http://species.wikipedia.org/wiki/$1',1,0),('wikitravel','http://wikitravel.org/en/$1',0,0),('wikiworld','http://WikiWorld.com/wiki/index.php/$1',0,0),('wikt','http://en.wiktionary.org/wiki/$1',1,0),('wiktionary','http://en.wiktionary.org/wiki/$1',1,0),('wlug','http://www.wlug.org.nz/$1',0,0),('wlwiki','http://winslowslair.supremepixels.net/wiki/index.php/$1',0,0),('ypsieyeball','http://sknkwrks.dyndns.org:1957/writewiki/wiki.pl?$1',0,0),('zwiki','http://www.zwiki.org/$1',0,0),('zzz wiki','http://wiki.zzz.ee/',0,0); /*!40000 ALTER TABLE `interwiki` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ipblocks` -- DROP TABLE IF EXISTS `ipblocks`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `ipblocks` ( `ipb_id` int(11) NOT NULL auto_increment, `ipb_address` tinyblob NOT NULL, `ipb_user` int(10) unsigned NOT NULL default '0', `ipb_by` int(10) unsigned NOT NULL default '0', `ipb_reason` tinyblob NOT NULL, `ipb_timestamp` binary(14) NOT NULL default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `ipb_auto` tinyint(1) NOT NULL default '0', `ipb_anon_only` tinyint(1) NOT NULL default '0', `ipb_create_account` tinyint(1) NOT NULL default '1', `ipb_enable_autoblock` tinyint(1) NOT NULL default '1', `ipb_expiry` varbinary(14) NOT NULL default '', `ipb_range_start` tinyblob NOT NULL, `ipb_range_end` tinyblob NOT NULL, `ipb_deleted` tinyint(1) NOT NULL default '0', `ipb_block_email` tinyint(1) NOT NULL default '0', PRIMARY KEY (`ipb_id`), UNIQUE KEY `ipb_address` (`ipb_address`(255),`ipb_user`,`ipb_auto`,`ipb_anon_only`), KEY `ipb_user` (`ipb_user`), KEY `ipb_range` (`ipb_range_start`(8),`ipb_range_end`(8)), KEY `ipb_timestamp` (`ipb_timestamp`), KEY `ipb_expiry` (`ipb_expiry`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `ipblocks` -- LOCK TABLES `ipblocks` WRITE; /*!40000 ALTER TABLE `ipblocks` DISABLE KEYS */; /*!40000 ALTER TABLE `ipblocks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `job` -- DROP TABLE IF EXISTS `job`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `job` ( `job_id` int(10) unsigned NOT NULL auto_increment, `job_cmd` varbinary(60) NOT NULL default '', `job_namespace` int(11) NOT NULL, `job_title` varchar(255) character set latin1 collate latin1_bin NOT NULL, `job_params` blob NOT NULL, PRIMARY KEY (`job_id`), KEY `job_cmd` (`job_cmd`,`job_namespace`,`job_title`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `job` -- LOCK TABLES `job` WRITE; /*!40000 ALTER TABLE `job` DISABLE KEYS */; /*!40000 ALTER TABLE `job` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `langlinks` -- DROP TABLE IF EXISTS `langlinks`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `langlinks` ( `ll_from` int(10) unsigned NOT NULL default '0', `ll_lang` varbinary(20) NOT NULL default '', `ll_title` varchar(255) character set latin1 collate latin1_bin NOT NULL default '', UNIQUE KEY `ll_from` (`ll_from`,`ll_lang`), KEY `ll_lang` (`ll_lang`,`ll_title`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `langlinks` -- LOCK TABLES `langlinks` WRITE; /*!40000 ALTER TABLE `langlinks` DISABLE KEYS */; /*!40000 ALTER TABLE `langlinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `logging` -- DROP TABLE IF EXISTS `logging`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `logging` ( `log_type` varbinary(10) NOT NULL default '', `log_action` varbinary(10) NOT NULL default '', `log_timestamp` binary(14) NOT NULL default '19700101000000', `log_user` int(10) unsigned NOT NULL default '0', `log_namespace` int(11) NOT NULL default '0', `log_title` varchar(255) character set latin1 collate latin1_bin NOT NULL default '', `log_comment` varchar(255) NOT NULL default '', `log_params` blob NOT NULL, `log_id` int(10) unsigned NOT NULL auto_increment, `log_deleted` tinyint(3) unsigned NOT NULL default '0', PRIMARY KEY (`log_id`), KEY `type_time` (`log_type`,`log_timestamp`), KEY `user_time` (`log_user`,`log_timestamp`), KEY `page_time` (`log_namespace`,`log_title`,`log_timestamp`), KEY `times` (`log_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `logging` -- LOCK TABLES `logging` WRITE; /*!40000 ALTER TABLE `logging` DISABLE KEYS */; /*!40000 ALTER TABLE `logging` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `math` -- DROP TABLE IF EXISTS `math`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `math` ( `math_inputhash` varbinary(16) NOT NULL, `math_outputhash` varbinary(16) NOT NULL, `math_html_conservativeness` tinyint(4) NOT NULL, `math_html` text, `math_mathml` text, UNIQUE KEY `math_inputhash` (`math_inputhash`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `math` -- LOCK TABLES `math` WRITE; /*!40000 ALTER TABLE `math` DISABLE KEYS */; /*!40000 ALTER TABLE `math` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `objectcache` -- DROP TABLE IF EXISTS `objectcache`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `objectcache` ( `keyname` varbinary(255) NOT NULL default '', `value` mediumblob, `exptime` datetime default NULL, UNIQUE KEY `keyname` (`keyname`), KEY `exptime` (`exptime`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `objectcache` -- LOCK TABLES `objectcache` WRITE; /*!40000 ALTER TABLE `objectcache` DISABLE KEYS */; INSERT INTO `objectcache` VALUES ('mediawiki:messages','K2.2R\ns\r\nSδ2\0','2009-03-16 03:41:02'),('mediawiki:pcache:idhash:1-0!1!0!!ca!2','VMo7YZ M{CS- É\rر͡(xEKnInd)z詇?ZRdF8f3{0ye TR¢sBLӐjT\nj*w:k.!f%$>A櫃M-̖٫?zvT dT=PJ7*2Yaߦ\"kѼOC}TNX\r.&&E%q =ZmҭF9aD[kzC.d,\nh/IơL7\"S61>[Qz ѣmTB9[ ǽwn7n<1GU5Kh?\ZPs (aWOA\rx*ԕ\rFi(|$[LC\"^j#pӰ\rEZ,Πy0#F)5%+U\Z2Ohyv0XAL}-Ǯ\'Eݻz~RlX\'\'\'El programari del MediaWiki s\'ha instal·lat correctament.\'\'\'\n\nConsulteu la [http://meta.wikimedia.org/wiki/Help:Contents Guia d\'Usuari] per a més informació sobre com utilitzar-lo.\n\n== Per a començar ==\n\n* [http://www.mediawiki.org/wiki/Manual:Configuration_settings Llista de característiques configurables]\n* [http://www.mediawiki.org/wiki/Manual:FAQ PMF del MediaWiki]\n* [http://lists.wikimedia.org/mailman/listinfo/mediawiki-announce Llista de correu (\'\'listserv\'\') per a anuncis del MediaWiki]','utf-8'); /*!40000 ALTER TABLE `text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `trackbacks` -- DROP TABLE IF EXISTS `trackbacks`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `trackbacks` ( `tb_id` int(11) NOT NULL auto_increment, `tb_page` int(11) default NULL, `tb_title` varchar(255) NOT NULL, `tb_url` blob NOT NULL, `tb_ex` text, `tb_name` varchar(255) default NULL, PRIMARY KEY (`tb_id`), KEY `tb_page` (`tb_page`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `trackbacks` -- LOCK TABLES `trackbacks` WRITE; /*!40000 ALTER TABLE `trackbacks` DISABLE KEYS */; /*!40000 ALTER TABLE `trackbacks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `transcache` -- DROP TABLE IF EXISTS `transcache`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `transcache` ( `tc_url` varbinary(255) NOT NULL, `tc_contents` text, `tc_time` int(11) NOT NULL, UNIQUE KEY `tc_url_idx` (`tc_url`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `transcache` -- LOCK TABLES `transcache` WRITE; /*!40000 ALTER TABLE `transcache` DISABLE KEYS */; /*!40000 ALTER TABLE `transcache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `user` ( `user_id` int(10) unsigned NOT NULL auto_increment, `user_name` varchar(255) character set latin1 collate latin1_bin NOT NULL default '', `user_real_name` varchar(255) character set latin1 collate latin1_bin NOT NULL default '', `user_password` tinyblob NOT NULL, `user_newpassword` tinyblob NOT NULL, `user_newpass_time` binary(14) default NULL, `user_email` tinytext NOT NULL, `user_options` blob NOT NULL, `user_touched` binary(14) NOT NULL default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `user_token` binary(32) NOT NULL default '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `user_email_authenticated` binary(14) default NULL, `user_email_token` binary(32) default NULL, `user_email_token_expires` binary(14) default NULL, `user_registration` binary(14) default NULL, `user_editcount` int(11) default NULL, PRIMARY KEY (`user_id`), UNIQUE KEY `user_name` (`user_name`), KEY `user_email_token` (`user_email_token`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `user` -- LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; INSERT INTO `user` VALUES (1,'Super','','45dc8c1cf4d576eb0ff9726cd0249ad9','',NULL,'','quickbar=1\nunderline=2\ncols=80\nrows=25\nsearchlimit=20\ncontextlines=5\ncontextchars=50\nskin=\nmath=1\nrcdays=7\nrclimit=50\nwllimit=250\nhighlightbroken=1\nstubthreshold=0\npreviewontop=1\neditsection=1\neditsectiononrightclick=0\nshowtoc=1\nshowtoolbar=1\ndate=default\nimagesize=2\nthumbsize=2\nrememberpassword=0\nenotifwatchlistpages=0\nenotifusertalkpages=1\nenotifminoredits=0\nenotifrevealaddr=0\nshownumberswatching=1\nfancysig=0\nexternaleditor=0\nexternaldiff=0\nshowjumplinks=1\nnumberheadings=0\nuselivepreview=0\nwatchlistdays=3\nvariant=ca\nlanguage=ca\nsearchNs0=1','20090315033848','63b9498443578316dce57aa5041b1866',NULL,NULL,NULL,'20090315033843',0); /*!40000 ALTER TABLE `user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_groups` -- DROP TABLE IF EXISTS `user_groups`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `user_groups` ( `ug_user` int(10) unsigned NOT NULL default '0', `ug_group` varbinary(16) NOT NULL default '', PRIMARY KEY (`ug_user`,`ug_group`), KEY `ug_group` (`ug_group`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `user_groups` -- LOCK TABLES `user_groups` WRITE; /*!40000 ALTER TABLE `user_groups` DISABLE KEYS */; INSERT INTO `user_groups` VALUES (1,'bureaucrat'),(1,'sysop'); /*!40000 ALTER TABLE `user_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_newtalk` -- DROP TABLE IF EXISTS `user_newtalk`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `user_newtalk` ( `user_id` int(11) NOT NULL default '0', `user_ip` varbinary(40) NOT NULL default '', KEY `user_id` (`user_id`), KEY `user_ip` (`user_ip`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `user_newtalk` -- LOCK TABLES `user_newtalk` WRITE; /*!40000 ALTER TABLE `user_newtalk` DISABLE KEYS */; /*!40000 ALTER TABLE `user_newtalk` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `watchlist` -- DROP TABLE IF EXISTS `watchlist`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `watchlist` ( `wl_user` int(10) unsigned NOT NULL, `wl_namespace` int(11) NOT NULL default '0', `wl_title` varchar(255) character set latin1 collate latin1_bin NOT NULL default '', `wl_notificationtimestamp` varbinary(14) default NULL, UNIQUE KEY `wl_user` (`wl_user`,`wl_namespace`,`wl_title`), KEY `namespace_title` (`wl_namespace`,`wl_title`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `watchlist` -- LOCK TABLES `watchlist` WRITE; /*!40000 ALTER TABLE `watchlist` DISABLE KEYS */; /*!40000 ALTER TABLE `watchlist` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2009-03-15 3:42:15