-- MySQL dump 10.16 Distrib 10.1.41-MariaDB, for debian-linux-gnu (x86_64) -- -- Host: localhost Database: mediawiki_testwiki -- ------------------------------------------------------ -- Server version 10.1.41-MariaDB-0+deb9u1 /*!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 utf8mb4 */; /*!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 `abuse_filter` -- DROP TABLE IF EXISTS `abuse_filter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abuse_filter` ( `af_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `af_pattern` blob NOT NULL, `af_user` bigint(20) unsigned NOT NULL, `af_user_text` varbinary(255) NOT NULL, `af_timestamp` binary(14) NOT NULL, `af_enabled` tinyint(1) NOT NULL DEFAULT '1', `af_comments` blob, `af_public_comments` tinyblob, `af_hidden` tinyint(1) NOT NULL DEFAULT '0', `af_hit_count` bigint(20) NOT NULL DEFAULT '0', `af_throttled` tinyint(1) NOT NULL DEFAULT '0', `af_deleted` tinyint(1) NOT NULL DEFAULT '0', `af_actions` varbinary(255) NOT NULL DEFAULT '', `af_global` tinyint(1) NOT NULL DEFAULT '0', `af_group` varbinary(64) NOT NULL DEFAULT 'default', PRIMARY KEY (`af_id`), KEY `af_user` (`af_user`), KEY `af_group` (`af_group`,`af_enabled`,`af_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `abuse_filter_action` -- DROP TABLE IF EXISTS `abuse_filter_action`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abuse_filter_action` ( `afa_filter` bigint(20) unsigned NOT NULL, `afa_consequence` varbinary(255) NOT NULL, `afa_parameters` tinyblob NOT NULL, PRIMARY KEY (`afa_filter`,`afa_consequence`), KEY `afa_consequence` (`afa_consequence`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `abuse_filter_history` -- DROP TABLE IF EXISTS `abuse_filter_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abuse_filter_history` ( `afh_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `afh_filter` bigint(20) unsigned NOT NULL, `afh_user` bigint(20) unsigned NOT NULL, `afh_user_text` varbinary(255) NOT NULL, `afh_timestamp` binary(14) NOT NULL, `afh_pattern` blob NOT NULL, `afh_comments` blob NOT NULL, `afh_flags` tinyblob NOT NULL, `afh_public_comments` tinyblob, `afh_actions` blob, `afh_deleted` tinyint(1) NOT NULL DEFAULT '0', `afh_changed_fields` varbinary(255) NOT NULL DEFAULT '', `afh_group` varbinary(64) DEFAULT NULL, PRIMARY KEY (`afh_id`), KEY `afh_filter` (`afh_filter`), KEY `afh_user` (`afh_user`), KEY `afh_user_text` (`afh_user_text`), KEY `afh_timestamp` (`afh_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `abuse_filter_log` -- DROP TABLE IF EXISTS `abuse_filter_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `abuse_filter_log` ( `afl_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `afl_filter` varbinary(64) NOT NULL, `afl_user` bigint(20) unsigned NOT NULL, `afl_user_text` varbinary(255) NOT NULL, `afl_ip` varbinary(255) NOT NULL, `afl_action` varbinary(255) NOT NULL, `afl_actions` varbinary(255) NOT NULL, `afl_var_dump` blob NOT NULL, `afl_timestamp` binary(14) NOT NULL, `afl_namespace` int(11) NOT NULL, `afl_title` varbinary(255) NOT NULL, `afl_wiki` varbinary(64) DEFAULT NULL, `afl_deleted` tinyint(1) NOT NULL DEFAULT '0', `afl_patrolled_by` int(10) unsigned DEFAULT NULL, `afl_rev_id` int(10) unsigned DEFAULT NULL, `afl_log_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`afl_id`), KEY `filter_timestamp` (`afl_filter`,`afl_timestamp`), KEY `user_timestamp` (`afl_user`,`afl_user_text`,`afl_timestamp`), KEY `afl_timestamp` (`afl_timestamp`), KEY `page_timestamp` (`afl_namespace`,`afl_title`,`afl_timestamp`), KEY `ip_timestamp` (`afl_ip`,`afl_timestamp`), KEY `afl_rev_id` (`afl_rev_id`), KEY `afl_log_id` (`afl_log_id`), KEY `wiki_timestamp` (`afl_wiki`,`afl_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `account_credentials` -- DROP TABLE IF EXISTS `account_credentials`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `account_credentials` ( `acd_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `acd_user_id` int(10) unsigned NOT NULL, `acd_real_name` varbinary(255) NOT NULL DEFAULT '', `acd_email` tinyblob NOT NULL, `acd_email_authenticated` varbinary(14) DEFAULT NULL, `acd_bio` mediumblob NOT NULL, `acd_notes` mediumblob NOT NULL, `acd_urls` mediumblob NOT NULL, `acd_ip` varbinary(255) DEFAULT '', `acd_xff` varbinary(255) DEFAULT '', `acd_agent` varbinary(255) DEFAULT '', `acd_filename` varbinary(255) DEFAULT NULL, `acd_storage_key` varbinary(64) DEFAULT NULL, `acd_areas` mediumblob NOT NULL, `acd_registration` varbinary(14) NOT NULL, `acd_accepted` varbinary(14) DEFAULT NULL, `acd_user` int(10) unsigned NOT NULL DEFAULT '0', `acd_comment` varbinary(255) NOT NULL DEFAULT '', PRIMARY KEY (`acd_id`), UNIQUE KEY `acd_user_id` (`acd_user_id`,`acd_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `account_requests` -- DROP TABLE IF EXISTS `account_requests`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `account_requests` ( `acr_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `acr_name` varbinary(255) NOT NULL DEFAULT '', `acr_real_name` varbinary(255) NOT NULL DEFAULT '', `acr_email` varbinary(255) NOT NULL, `acr_email_authenticated` varbinary(14) DEFAULT NULL, `acr_email_token` binary(32) DEFAULT NULL, `acr_email_token_expires` varbinary(14) DEFAULT NULL, `acr_bio` mediumblob NOT NULL, `acr_notes` mediumblob NOT NULL, `acr_urls` mediumblob NOT NULL, `acr_ip` varbinary(255) DEFAULT '', `acr_xff` varbinary(255) DEFAULT '', `acr_agent` varbinary(255) DEFAULT '', `acr_filename` varbinary(255) DEFAULT NULL, `acr_storage_key` varbinary(64) DEFAULT NULL, `acr_type` tinyint(255) unsigned NOT NULL DEFAULT '0', `acr_areas` mediumblob NOT NULL, `acr_registration` varbinary(14) NOT NULL, `acr_deleted` tinyint(1) NOT NULL, `acr_rejected` varbinary(14) DEFAULT NULL, `acr_held` varbinary(14) DEFAULT NULL, `acr_user` int(10) unsigned NOT NULL DEFAULT '0', `acr_comment` varbinary(255) NOT NULL DEFAULT '', PRIMARY KEY (`acr_id`), UNIQUE KEY `acr_name` (`acr_name`), KEY `acr_email` (`acr_email`), KEY `acr_email_token` (`acr_email_token`), KEY `acr_type_del_reg` (`acr_type`,`acr_deleted`,`acr_registration`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `actor` -- DROP TABLE IF EXISTS `actor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `actor` ( `actor_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `actor_user` int(10) unsigned DEFAULT NULL, `actor_name` varbinary(255) NOT NULL, PRIMARY KEY (`actor_id`), UNIQUE KEY `actor_name` (`actor_name`), UNIQUE KEY `actor_user` (`actor_user`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `archive` -- DROP TABLE IF EXISTS `archive`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `archive` ( `ar_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `ar_namespace` int(11) NOT NULL DEFAULT '0', `ar_title` varbinary(255) NOT NULL DEFAULT '', `ar_comment` varbinary(767) NOT NULL DEFAULT '', `ar_comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `ar_user` int(10) unsigned NOT NULL DEFAULT '0', `ar_user_text` varbinary(255) NOT NULL DEFAULT '', `ar_actor` bigint(20) unsigned NOT NULL DEFAULT '0', `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_rev_id` int(10) unsigned NOT NULL, `ar_text_id` int(10) unsigned NOT NULL DEFAULT '0', `ar_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0', `ar_len` int(10) unsigned DEFAULT NULL, `ar_page_id` int(10) unsigned DEFAULT NULL, `ar_parent_id` int(10) unsigned DEFAULT NULL, `ar_sha1` varbinary(32) NOT NULL DEFAULT '', `ar_content_model` varbinary(32) DEFAULT NULL, `ar_content_format` varbinary(64) DEFAULT NULL, PRIMARY KEY (`ar_id`), UNIQUE KEY `ar_revid_uniq` (`ar_rev_id`), KEY `name_title_timestamp` (`ar_namespace`,`ar_title`,`ar_timestamp`), KEY `usertext_timestamp` (`ar_user_text`,`ar_timestamp`), KEY `ar_actor_timestamp` (`ar_actor`,`ar_timestamp`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `babel` -- DROP TABLE IF EXISTS `babel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `babel` ( `babel_user` int(10) unsigned NOT NULL, `babel_lang` varbinary(10) NOT NULL, `babel_level` varbinary(2) NOT NULL, PRIMARY KEY (`babel_user`,`babel_lang`), KEY `babel_lang_level` (`babel_lang`,`babel_level`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bot_passwords` -- DROP TABLE IF EXISTS `bot_passwords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bot_passwords` ( `bp_user` int(10) unsigned NOT NULL, `bp_app_id` varbinary(32) NOT NULL, `bp_password` tinyblob NOT NULL, `bp_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', `bp_restrictions` blob NOT NULL, `bp_grants` blob NOT NULL, PRIMARY KEY (`bp_user`,`bp_app_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `category` -- DROP TABLE IF EXISTS `category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `category` ( `cat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cat_title` varbinary(255) NOT NULL, `cat_pages` int(11) NOT NULL DEFAULT '0', `cat_subcats` int(11) NOT NULL DEFAULT '0', `cat_files` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`cat_id`), UNIQUE KEY `cat_title` (`cat_title`), KEY `cat_pages` (`cat_pages`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `categorylinks` -- DROP TABLE IF EXISTS `categorylinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `categorylinks` ( `cl_from` int(10) unsigned NOT NULL DEFAULT '0', `cl_to` varbinary(255) NOT NULL DEFAULT '', `cl_sortkey` varbinary(230) NOT NULL DEFAULT '', `cl_sortkey_prefix` varbinary(255) NOT NULL DEFAULT '', `cl_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `cl_collation` varbinary(32) NOT NULL DEFAULT '', `cl_type` enum('page','subcat','file') NOT NULL DEFAULT 'page', PRIMARY KEY (`cl_from`,`cl_to`), KEY `cl_sortkey` (`cl_to`,`cl_type`,`cl_sortkey`,`cl_from`), KEY `cl_timestamp` (`cl_to`,`cl_timestamp`), KEY `cl_collation_ext` (`cl_collation`,`cl_to`,`cl_type`,`cl_from`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `change_tag` -- DROP TABLE IF EXISTS `change_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `change_tag` ( `ct_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `ct_rc_id` int(11) DEFAULT NULL, `ct_log_id` int(10) unsigned DEFAULT NULL, `ct_rev_id` int(10) unsigned DEFAULT NULL, `ct_tag` varbinary(255) NOT NULL DEFAULT '', `ct_params` blob, `ct_tag_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`ct_id`), UNIQUE KEY `change_tag_rc_tag_id` (`ct_rc_id`,`ct_tag_id`), UNIQUE KEY `change_tag_log_tag_id` (`ct_log_id`,`ct_tag_id`), UNIQUE KEY `change_tag_rev_tag_id` (`ct_rev_id`,`ct_tag_id`), KEY `change_tag_tag_id` (`ct_tag`,`ct_rc_id`,`ct_rev_id`,`ct_log_id`), KEY `change_tag_tag_id_id` (`ct_tag_id`,`ct_rc_id`,`ct_rev_id`,`ct_log_id`), KEY `change_tag_rc_tag_nonuniq` (`ct_rc_id`,`ct_tag`), KEY `change_tag_log_tag_nonuniq` (`ct_log_id`,`ct_tag`), KEY `change_tag_rev_tag_nonuniq` (`ct_rev_id`,`ct_tag`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `change_tag_def` -- DROP TABLE IF EXISTS `change_tag_def`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `change_tag_def` ( `ctd_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `ctd_name` varbinary(255) NOT NULL, `ctd_user_defined` tinyint(1) NOT NULL, `ctd_count` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ctd_id`), UNIQUE KEY `ctd_name` (`ctd_name`), KEY `ctd_count` (`ctd_count`), KEY `ctd_user_defined` (`ctd_user_defined`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comment` -- DROP TABLE IF EXISTS `comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comment` ( `comment_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_hash` int(11) NOT NULL, `comment_text` blob NOT NULL, `comment_data` blob, PRIMARY KEY (`comment_id`), KEY `comment_hash` (`comment_hash`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `content` -- DROP TABLE IF EXISTS `content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `content` ( `content_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `content_size` int(10) unsigned NOT NULL, `content_sha1` varbinary(32) NOT NULL, `content_model` smallint(5) unsigned NOT NULL, `content_address` varbinary(255) NOT NULL, PRIMARY KEY (`content_id`) ) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `content_models` -- DROP TABLE IF EXISTS `content_models`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `content_models` ( `model_id` smallint(6) NOT NULL AUTO_INCREMENT, `model_name` varbinary(64) NOT NULL, PRIMARY KEY (`model_id`), UNIQUE KEY `model_name` (`model_name`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `externallinks` -- DROP TABLE IF EXISTS `externallinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `externallinks` ( `el_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `el_from` int(10) unsigned NOT NULL DEFAULT '0', `el_to` blob NOT NULL, `el_index` blob NOT NULL, `el_index_60` varbinary(60) NOT NULL, PRIMARY KEY (`el_id`), KEY `el_from` (`el_from`,`el_to`(40)), KEY `el_to` (`el_to`(60),`el_from`), KEY `el_index` (`el_index`(60)), KEY `el_index_60` (`el_index_60`,`el_id`), KEY `el_from_index_60` (`el_from`,`el_index_60`,`el_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1141 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `filearchive` -- DROP TABLE IF EXISTS `filearchive`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `filearchive` ( `fa_id` int(11) NOT NULL AUTO_INCREMENT, `fa_name` varbinary(255) NOT NULL DEFAULT '', `fa_archive_name` varbinary(255) 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` varbinary(767) DEFAULT '', `fa_deleted_reason_id` bigint(20) unsigned NOT NULL DEFAULT '0', `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','3D') DEFAULT NULL, `fa_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart','chemical') DEFAULT 'unknown', `fa_minor_mime` varbinary(100) DEFAULT 'unknown', `fa_description` varbinary(767) DEFAULT '', `fa_description_id` bigint(20) unsigned NOT NULL DEFAULT '0', `fa_user` int(10) unsigned DEFAULT '0', `fa_user_text` varbinary(255) 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', `fa_sha1` varbinary(32) NOT NULL DEFAULT '', 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_user_timestamp` (`fa_user_text`,`fa_timestamp`), KEY `fa_sha1` (`fa_sha1`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `image` -- DROP TABLE IF EXISTS `image`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `image` ( `img_name` varbinary(255) 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','3D') DEFAULT NULL, `img_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart','chemical') NOT NULL DEFAULT 'unknown', `img_minor_mime` varbinary(100) NOT NULL DEFAULT 'unknown', `img_description` varbinary(767) NOT NULL DEFAULT '', `img_description_id` bigint(20) unsigned NOT NULL DEFAULT '0', `img_user` int(10) unsigned NOT NULL DEFAULT '0', `img_user_text` varbinary(255) NOT NULL, `img_timestamp` varbinary(14) NOT NULL DEFAULT '', `img_sha1` varbinary(32) NOT NULL DEFAULT '', PRIMARY KEY (`img_name`), KEY `img_user_timestamp` (`img_user`,`img_timestamp`), KEY `img_usertext_timestamp` (`img_user_text`,`img_timestamp`), KEY `img_size` (`img_size`), KEY `img_timestamp` (`img_timestamp`), KEY `img_sha1` (`img_sha1`(10)), KEY `img_media_mime` (`img_media_type`,`img_major_mime`,`img_minor_mime`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `image_comment_temp` -- DROP TABLE IF EXISTS `image_comment_temp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `image_comment_temp` ( `imgcomment_name` varbinary(255) NOT NULL, `imgcomment_description_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`imgcomment_name`,`imgcomment_description_id`), UNIQUE KEY `imgcomment_name` (`imgcomment_name`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `imagelinks` -- DROP TABLE IF EXISTS `imagelinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `imagelinks` ( `il_from` int(10) unsigned NOT NULL DEFAULT '0', `il_from_namespace` int(11) NOT NULL DEFAULT '0', `il_to` varbinary(255) NOT NULL DEFAULT '', PRIMARY KEY (`il_from`,`il_to`), KEY `il_to` (`il_to`,`il_from`), KEY `il_backlinks_namespace` (`il_from_namespace`,`il_to`,`il_from`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `interwiki` -- DROP TABLE IF EXISTS `interwiki`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `interwiki` ( `iw_prefix` varbinary(32) NOT NULL, `iw_url` blob NOT NULL, `iw_api` blob NOT NULL, `iw_wikiid` varbinary(64) NOT NULL, `iw_local` tinyint(1) NOT NULL, `iw_trans` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`iw_prefix`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `ip_changes` -- DROP TABLE IF EXISTS `ip_changes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ip_changes` ( `ipc_rev_id` int(10) unsigned NOT NULL DEFAULT '0', `ipc_rev_timestamp` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `ipc_hex` varbinary(35) NOT NULL DEFAULT '', PRIMARY KEY (`ipc_rev_id`), KEY `ipc_rev_timestamp` (`ipc_rev_timestamp`), KEY `ipc_hex_time` (`ipc_hex`,`ipc_rev_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `ipblocks` -- DROP TABLE IF EXISTS `ipblocks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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_by_text` varbinary(255) NOT NULL DEFAULT '', `ipb_reason` varbinary(767) NOT NULL DEFAULT '', `ipb_reason_id` bigint(20) unsigned NOT NULL DEFAULT '0', `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', `ipb_allow_usertalk` tinyint(1) NOT NULL DEFAULT '0', `ipb_parent_block_id` int(11) DEFAULT NULL, `ipb_sitewide` tinyint(1) NOT NULL DEFAULT '1', 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`), KEY `ipb_parent_block_id` (`ipb_parent_block_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `ipblocks_restrictions` -- DROP TABLE IF EXISTS `ipblocks_restrictions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ipblocks_restrictions` ( `ir_ipb_id` int(11) NOT NULL, `ir_type` tinyint(4) NOT NULL, `ir_value` int(11) NOT NULL, PRIMARY KEY (`ir_ipb_id`,`ir_type`,`ir_value`), KEY `ir_type_value` (`ir_type`,`ir_value`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `iwlinks` -- DROP TABLE IF EXISTS `iwlinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `iwlinks` ( `iwl_from` int(10) unsigned NOT NULL DEFAULT '0', `iwl_prefix` varbinary(20) NOT NULL DEFAULT '', `iwl_title` varbinary(255) NOT NULL DEFAULT '', PRIMARY KEY (`iwl_from`,`iwl_prefix`,`iwl_title`), KEY `iwl_prefix_title_from` (`iwl_prefix`,`iwl_title`,`iwl_from`), KEY `iwl_prefix_from_title` (`iwl_prefix`,`iwl_from`,`iwl_title`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `job` -- DROP TABLE IF EXISTS `job`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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` varbinary(255) NOT NULL, `job_timestamp` varbinary(14) DEFAULT NULL, `job_params` blob NOT NULL, `job_random` int(10) unsigned NOT NULL DEFAULT '0', `job_attempts` int(10) unsigned NOT NULL DEFAULT '0', `job_token` varbinary(32) NOT NULL DEFAULT '', `job_token_timestamp` varbinary(14) DEFAULT NULL, `job_sha1` varbinary(32) NOT NULL DEFAULT '', PRIMARY KEY (`job_id`), KEY `job_sha1` (`job_sha1`), KEY `job_cmd_token` (`job_cmd`,`job_token`,`job_random`), KEY `job_cmd_token_id` (`job_cmd`,`job_token`,`job_id`), KEY `job_cmd` (`job_cmd`,`job_namespace`,`job_title`,`job_params`(128)), KEY `job_timestamp` (`job_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `l10n_cache` -- DROP TABLE IF EXISTS `l10n_cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `l10n_cache` ( `lc_lang` varbinary(32) NOT NULL, `lc_key` varbinary(255) NOT NULL, `lc_value` mediumblob NOT NULL, PRIMARY KEY (`lc_lang`,`lc_key`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `langlinks` -- DROP TABLE IF EXISTS `langlinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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` varbinary(255) NOT NULL DEFAULT '', PRIMARY KEY (`ll_from`,`ll_lang`), KEY `ll_lang` (`ll_lang`,`ll_title`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `log_search` -- DROP TABLE IF EXISTS `log_search`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `log_search` ( `ls_field` varbinary(32) NOT NULL, `ls_value` varbinary(255) NOT NULL, `ls_log_id` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ls_field`,`ls_value`,`ls_log_id`), KEY `ls_log_id` (`ls_log_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `logging` -- DROP TABLE IF EXISTS `logging`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `logging` ( `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `log_type` varbinary(32) NOT NULL DEFAULT '', `log_action` varbinary(32) NOT NULL DEFAULT '', `log_timestamp` binary(14) NOT NULL DEFAULT '19700101000000', `log_user` int(10) unsigned NOT NULL DEFAULT '0', `log_user_text` varbinary(255) NOT NULL DEFAULT '', `log_namespace` int(11) NOT NULL DEFAULT '0', `log_title` varbinary(255) NOT NULL DEFAULT '', `log_page` int(10) unsigned DEFAULT NULL, `log_comment` varbinary(767) NOT NULL DEFAULT '', `log_comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `log_params` blob NOT NULL, `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`), KEY `log_user_type_time` (`log_user`,`log_type`,`log_timestamp`), KEY `log_page_id_time` (`log_page`,`log_timestamp`), KEY `log_user_text_type_time` (`log_user_text`,`log_type`,`log_timestamp`), KEY `log_user_text_time` (`log_user_text`,`log_timestamp`), KEY `log_type_action` (`log_type`,`log_action`,`log_timestamp`) ) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `module_deps` -- DROP TABLE IF EXISTS `module_deps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `module_deps` ( `md_module` varbinary(255) NOT NULL, `md_skin` varbinary(32) NOT NULL, `md_deps` mediumblob NOT NULL, PRIMARY KEY (`md_module`,`md_skin`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `objectcache` -- DROP TABLE IF EXISTS `objectcache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `objectcache` ( `keyname` varbinary(255) NOT NULL DEFAULT '', `value` mediumblob, `exptime` datetime DEFAULT NULL, PRIMARY KEY (`keyname`), KEY `exptime` (`exptime`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `oldimage` -- DROP TABLE IF EXISTS `oldimage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `oldimage` ( `oi_name` varbinary(255) NOT NULL DEFAULT '', `oi_archive_name` varbinary(255) NOT NULL DEFAULT '', `oi_size` int(10) unsigned NOT NULL DEFAULT '0', `oi_width` int(11) NOT NULL DEFAULT '0', `oi_height` int(11) NOT NULL DEFAULT '0', `oi_bits` int(11) NOT NULL DEFAULT '0', `oi_description` varbinary(767) NOT NULL DEFAULT '', `oi_description_id` bigint(20) unsigned NOT NULL DEFAULT '0', `oi_user` int(10) unsigned NOT NULL DEFAULT '0', `oi_user_text` varbinary(255) NOT NULL, `oi_timestamp` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `oi_metadata` mediumblob NOT NULL, `oi_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE','3D') DEFAULT NULL, `oi_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart','chemical') NOT NULL DEFAULT 'unknown', `oi_minor_mime` varbinary(100) NOT NULL DEFAULT 'unknown', `oi_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0', `oi_sha1` varbinary(32) NOT NULL DEFAULT '', KEY `oi_usertext_timestamp` (`oi_user_text`,`oi_timestamp`), KEY `oi_name_timestamp` (`oi_name`,`oi_timestamp`), KEY `oi_name_archive_name` (`oi_name`,`oi_archive_name`(14)), KEY `oi_sha1` (`oi_sha1`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `page` -- DROP TABLE IF EXISTS `page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `page` ( `page_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `page_namespace` int(11) NOT NULL, `page_title` varbinary(255) NOT NULL, `page_restrictions` tinyblob NOT NULL, `page_is_redirect` tinyint(3) unsigned NOT NULL DEFAULT '0', `page_is_new` tinyint(3) unsigned NOT NULL DEFAULT '0', `page_random` double unsigned NOT NULL, `page_touched` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `page_links_updated` varbinary(14) DEFAULT NULL, `page_latest` int(10) unsigned NOT NULL, `page_len` int(10) unsigned NOT NULL, `page_content_model` varbinary(32) DEFAULT NULL, `page_lang` varbinary(35) DEFAULT NULL, PRIMARY KEY (`page_id`), UNIQUE KEY `name_title` (`page_namespace`,`page_title`), KEY `page_random` (`page_random`), KEY `page_len` (`page_len`), KEY `page_redirect_namespace_len` (`page_is_redirect`,`page_namespace`,`page_len`) ) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `page_props` -- DROP TABLE IF EXISTS `page_props`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `page_props` ( `pp_page` int(11) NOT NULL, `pp_propname` varbinary(60) NOT NULL, `pp_value` blob NOT NULL, `pp_sortkey` float DEFAULT NULL, PRIMARY KEY (`pp_page`,`pp_propname`), UNIQUE KEY `pp_propname_page` (`pp_propname`,`pp_page`), UNIQUE KEY `pp_propname_sortkey_page` (`pp_propname`,`pp_sortkey`,`pp_page`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `page_restrictions` -- DROP TABLE IF EXISTS `page_restrictions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `page_restrictions` ( `pr_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `pr_page` int(11) NOT NULL, `pr_type` varbinary(60) NOT NULL, `pr_level` varbinary(60) NOT NULL, `pr_cascade` tinyint(4) NOT NULL, `pr_user` int(10) unsigned DEFAULT NULL, `pr_expiry` varbinary(14) DEFAULT NULL, PRIMARY KEY (`pr_id`), UNIQUE KEY `pr_pagetype` (`pr_page`,`pr_type`), KEY `pr_typelevel` (`pr_type`,`pr_level`), KEY `pr_level` (`pr_level`), KEY `pr_cascade` (`pr_cascade`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `pagelinks` -- DROP TABLE IF EXISTS `pagelinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pagelinks` ( `pl_from` int(10) unsigned NOT NULL DEFAULT '0', `pl_from_namespace` int(11) NOT NULL DEFAULT '0', `pl_namespace` int(11) NOT NULL DEFAULT '0', `pl_title` varbinary(255) NOT NULL DEFAULT '', PRIMARY KEY (`pl_from`,`pl_namespace`,`pl_title`), KEY `pl_namespace` (`pl_namespace`,`pl_title`,`pl_from`), KEY `pl_backlinks_namespace` (`pl_from_namespace`,`pl_namespace`,`pl_title`,`pl_from`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `protected_titles` -- DROP TABLE IF EXISTS `protected_titles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `protected_titles` ( `pt_namespace` int(11) NOT NULL, `pt_title` varbinary(255) NOT NULL, `pt_user` int(10) unsigned NOT NULL, `pt_reason` varbinary(767) DEFAULT '', `pt_reason_id` bigint(20) unsigned NOT NULL DEFAULT '0', `pt_timestamp` binary(14) NOT NULL, `pt_expiry` varbinary(14) NOT NULL DEFAULT '', `pt_create_perm` varbinary(60) NOT NULL, PRIMARY KEY (`pt_namespace`,`pt_title`), KEY `pt_timestamp` (`pt_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `querycache` -- DROP TABLE IF EXISTS `querycache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `querycache` ( `qc_type` varbinary(32) NOT NULL, `qc_value` int(10) unsigned NOT NULL DEFAULT '0', `qc_namespace` int(11) NOT NULL DEFAULT '0', `qc_title` varbinary(255) NOT NULL DEFAULT '', KEY `qc_type` (`qc_type`,`qc_value`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `querycache_info` -- DROP TABLE IF EXISTS `querycache_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `querycache_info` ( `qci_type` varbinary(32) NOT NULL DEFAULT '', `qci_timestamp` binary(14) NOT NULL DEFAULT '19700101000000', PRIMARY KEY (`qci_type`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `querycachetwo` -- DROP TABLE IF EXISTS `querycachetwo`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `querycachetwo` ( `qcc_type` varbinary(32) NOT NULL, `qcc_value` int(10) unsigned NOT NULL DEFAULT '0', `qcc_namespace` int(11) NOT NULL DEFAULT '0', `qcc_title` varbinary(255) NOT NULL DEFAULT '', `qcc_namespacetwo` int(11) NOT NULL DEFAULT '0', `qcc_titletwo` varbinary(255) NOT NULL DEFAULT '', KEY `qcc_type` (`qcc_type`,`qcc_value`), KEY `qcc_title` (`qcc_type`,`qcc_namespace`,`qcc_title`), KEY `qcc_titletwo` (`qcc_type`,`qcc_namespacetwo`,`qcc_titletwo`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `recentchanges` -- DROP TABLE IF EXISTS `recentchanges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `recentchanges` ( `rc_id` int(11) NOT NULL AUTO_INCREMENT, `rc_timestamp` varbinary(14) NOT NULL DEFAULT '', `rc_user` int(10) unsigned NOT NULL DEFAULT '0', `rc_user_text` varbinary(255) NOT NULL, `rc_namespace` int(11) NOT NULL DEFAULT '0', `rc_title` varbinary(255) NOT NULL DEFAULT '', `rc_comment` varbinary(767) NOT NULL DEFAULT '', `rc_comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `rc_minor` tinyint(3) unsigned NOT NULL DEFAULT '0', `rc_bot` tinyint(3) unsigned NOT NULL DEFAULT '0', `rc_new` tinyint(3) unsigned NOT NULL DEFAULT '0', `rc_cur_id` int(10) unsigned NOT NULL DEFAULT '0', `rc_this_oldid` int(10) unsigned NOT NULL DEFAULT '0', `rc_last_oldid` int(10) unsigned NOT NULL DEFAULT '0', `rc_type` tinyint(3) unsigned NOT NULL DEFAULT '0', `rc_source` varbinary(16) NOT NULL DEFAULT '', `rc_patrolled` tinyint(3) unsigned NOT NULL DEFAULT '0', `rc_ip` varbinary(40) NOT NULL DEFAULT '', `rc_old_len` int(11) DEFAULT NULL, `rc_new_len` int(11) DEFAULT NULL, `rc_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0', `rc_logid` int(10) unsigned NOT NULL DEFAULT '0', `rc_log_type` varbinary(255) DEFAULT NULL, `rc_log_action` varbinary(255) DEFAULT NULL, `rc_params` blob, PRIMARY KEY (`rc_id`), KEY `rc_timestamp` (`rc_timestamp`), KEY `rc_cur_id` (`rc_cur_id`), KEY `new_name_timestamp` (`rc_new`,`rc_namespace`,`rc_timestamp`), KEY `rc_ip` (`rc_ip`), KEY `rc_ns_usertext` (`rc_namespace`,`rc_user_text`), KEY `rc_user_text` (`rc_user_text`,`rc_timestamp`), KEY `rc_name_type_patrolled_timestamp` (`rc_namespace`,`rc_type`,`rc_patrolled`,`rc_timestamp`), KEY `rc_namespace_title_timestamp` (`rc_namespace`,`rc_title`,`rc_timestamp`), KEY `rc_this_oldid` (`rc_this_oldid`) ) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `redirect` -- DROP TABLE IF EXISTS `redirect`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `redirect` ( `rd_from` int(10) unsigned NOT NULL DEFAULT '0', `rd_namespace` int(11) NOT NULL DEFAULT '0', `rd_title` varbinary(255) NOT NULL DEFAULT '', `rd_interwiki` varbinary(32) DEFAULT NULL, `rd_fragment` varbinary(255) DEFAULT NULL, PRIMARY KEY (`rd_from`), KEY `rd_ns_title` (`rd_namespace`,`rd_title`,`rd_from`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `revision` -- DROP TABLE IF EXISTS `revision`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `revision` ( `rev_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `rev_page` int(10) unsigned NOT NULL, `rev_text_id` int(10) unsigned NOT NULL DEFAULT '0', `rev_comment` varbinary(767) NOT NULL DEFAULT '', `rev_user` int(10) unsigned NOT NULL DEFAULT '0', `rev_user_text` varbinary(255) NOT NULL DEFAULT '', `rev_timestamp` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `rev_minor_edit` tinyint(3) unsigned NOT NULL DEFAULT '0', `rev_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0', `rev_len` int(10) unsigned DEFAULT NULL, `rev_parent_id` int(10) unsigned DEFAULT NULL, `rev_sha1` varbinary(32) NOT NULL DEFAULT '', `rev_content_model` varbinary(32) DEFAULT NULL, `rev_content_format` varbinary(64) DEFAULT NULL, PRIMARY KEY (`rev_id`), KEY `rev_page_id` (`rev_page`,`rev_id`), KEY `rev_timestamp` (`rev_timestamp`), KEY `page_timestamp` (`rev_page`,`rev_timestamp`), KEY `user_timestamp` (`rev_user`,`rev_timestamp`), KEY `usertext_timestamp` (`rev_user_text`,`rev_timestamp`), KEY `page_user_timestamp` (`rev_page`,`rev_user`,`rev_timestamp`) ) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=binary MAX_ROWS=10000000 AVG_ROW_LENGTH=1024; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `revision_actor_temp` -- DROP TABLE IF EXISTS `revision_actor_temp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `revision_actor_temp` ( `revactor_rev` int(10) unsigned NOT NULL, `revactor_actor` bigint(20) unsigned NOT NULL, `revactor_timestamp` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0', `revactor_page` int(10) unsigned NOT NULL, PRIMARY KEY (`revactor_rev`,`revactor_actor`), UNIQUE KEY `revactor_rev` (`revactor_rev`), KEY `actor_timestamp` (`revactor_actor`,`revactor_timestamp`), KEY `page_actor_timestamp` (`revactor_page`,`revactor_actor`,`revactor_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `revision_comment_temp` -- DROP TABLE IF EXISTS `revision_comment_temp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `revision_comment_temp` ( `revcomment_rev` int(10) unsigned NOT NULL, `revcomment_comment_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`revcomment_rev`,`revcomment_comment_id`), UNIQUE KEY `revcomment_rev` (`revcomment_rev`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `searchindex` -- DROP TABLE IF EXISTS `searchindex`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `searchindex` ( `si_page` int(10) unsigned NOT NULL, `si_title` varchar(255) NOT NULL DEFAULT '', `si_text` mediumtext NOT NULL, UNIQUE KEY `si_page` (`si_page`), FULLTEXT KEY `si_title` (`si_title`), FULLTEXT KEY `si_text` (`si_text`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `site_identifiers` -- DROP TABLE IF EXISTS `site_identifiers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site_identifiers` ( `si_site` int(10) unsigned NOT NULL, `si_type` varbinary(32) NOT NULL, `si_key` varbinary(32) NOT NULL, PRIMARY KEY (`si_type`,`si_key`), KEY `site_ids_site` (`si_site`), KEY `site_ids_key` (`si_key`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `site_stats` -- DROP TABLE IF EXISTS `site_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `site_stats` ( `ss_row_id` int(10) unsigned NOT NULL, `ss_total_edits` bigint(20) unsigned DEFAULT NULL, `ss_good_articles` bigint(20) unsigned DEFAULT NULL, `ss_total_pages` bigint(20) unsigned DEFAULT NULL, `ss_users` bigint(20) unsigned DEFAULT NULL, `ss_active_users` bigint(20) unsigned DEFAULT NULL, `ss_images` bigint(20) unsigned DEFAULT NULL, PRIMARY KEY (`ss_row_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `sites` -- DROP TABLE IF EXISTS `sites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sites` ( `site_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_global_key` varbinary(32) NOT NULL, `site_type` varbinary(32) NOT NULL, `site_group` varbinary(32) NOT NULL, `site_source` varbinary(32) NOT NULL, `site_language` varbinary(32) NOT NULL, `site_protocol` varbinary(32) NOT NULL, `site_domain` varbinary(255) NOT NULL, `site_data` blob NOT NULL, `site_forward` tinyint(1) NOT NULL, `site_config` blob NOT NULL, PRIMARY KEY (`site_id`), UNIQUE KEY `sites_global_key` (`site_global_key`), KEY `sites_type` (`site_type`), KEY `sites_group` (`site_group`), KEY `sites_source` (`site_source`), KEY `sites_language` (`site_language`), KEY `sites_protocol` (`site_protocol`), KEY `sites_domain` (`site_domain`), KEY `sites_forward` (`site_forward`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `slot_roles` -- DROP TABLE IF EXISTS `slot_roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `slot_roles` ( `role_id` smallint(6) NOT NULL AUTO_INCREMENT, `role_name` varbinary(64) NOT NULL, PRIMARY KEY (`role_id`), UNIQUE KEY `role_name` (`role_name`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `slots` -- DROP TABLE IF EXISTS `slots`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `slots` ( `slot_revision_id` bigint(20) unsigned NOT NULL, `slot_role_id` smallint(5) unsigned NOT NULL, `slot_content_id` bigint(20) unsigned NOT NULL, `slot_origin` bigint(20) unsigned NOT NULL, PRIMARY KEY (`slot_revision_id`,`slot_role_id`), KEY `slot_revision_origin_role` (`slot_revision_id`,`slot_origin`,`slot_role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `tag_summary` -- DROP TABLE IF EXISTS `tag_summary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tag_summary` ( `ts_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `ts_rc_id` int(11) DEFAULT NULL, `ts_log_id` int(10) unsigned DEFAULT NULL, `ts_rev_id` int(10) unsigned DEFAULT NULL, `ts_tags` blob NOT NULL, PRIMARY KEY (`ts_id`), UNIQUE KEY `tag_summary_rc_id` (`ts_rc_id`), UNIQUE KEY `tag_summary_log_id` (`ts_log_id`), UNIQUE KEY `tag_summary_rev_id` (`ts_rev_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `templatelinks` -- DROP TABLE IF EXISTS `templatelinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `templatelinks` ( `tl_from` int(10) unsigned NOT NULL DEFAULT '0', `tl_from_namespace` int(11) NOT NULL DEFAULT '0', `tl_namespace` int(11) NOT NULL DEFAULT '0', `tl_title` varbinary(255) NOT NULL DEFAULT '', PRIMARY KEY (`tl_from`,`tl_namespace`,`tl_title`), KEY `tl_namespace` (`tl_namespace`,`tl_title`,`tl_from`), KEY `tl_backlinks_namespace` (`tl_from_namespace`,`tl_namespace`,`tl_title`,`tl_from`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `text` -- DROP TABLE IF EXISTS `text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `text` ( `old_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `old_text` mediumblob NOT NULL, `old_flags` tinyblob NOT NULL, PRIMARY KEY (`old_id`) ) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=binary MAX_ROWS=10000000 AVG_ROW_LENGTH=10240; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `transcache` -- DROP TABLE IF EXISTS `transcache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `transcache` ( `tc_url` varbinary(255) NOT NULL, `tc_contents` blob, `tc_time` binary(14) DEFAULT NULL, PRIMARY KEY (`tc_url`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `updatelog` -- DROP TABLE IF EXISTS `updatelog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `updatelog` ( `ul_key` varbinary(255) NOT NULL, `ul_value` blob, PRIMARY KEY (`ul_key`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `uploadstash` -- DROP TABLE IF EXISTS `uploadstash`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `uploadstash` ( `us_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `us_user` int(10) unsigned NOT NULL, `us_key` varbinary(255) NOT NULL, `us_orig_path` varbinary(255) NOT NULL, `us_path` varbinary(255) NOT NULL, `us_source_type` varbinary(50) DEFAULT NULL, `us_timestamp` varbinary(14) NOT NULL, `us_status` varbinary(50) NOT NULL, `us_chunk_inx` int(10) unsigned DEFAULT NULL, `us_props` blob, `us_size` int(10) unsigned NOT NULL, `us_sha1` varbinary(31) NOT NULL, `us_mime` varbinary(255) DEFAULT NULL, `us_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE','3D') DEFAULT NULL, `us_image_width` int(10) unsigned DEFAULT NULL, `us_image_height` int(10) unsigned DEFAULT NULL, `us_image_bits` smallint(5) unsigned DEFAULT NULL, PRIMARY KEY (`us_id`), UNIQUE KEY `us_key` (`us_key`), KEY `us_user` (`us_user`), KEY `us_timestamp` (`us_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user` ( `user_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_name` varbinary(255) NOT NULL DEFAULT '', `user_real_name` varbinary(255) NOT NULL DEFAULT '', `user_password` tinyblob NOT NULL, `user_newpassword` tinyblob NOT NULL, `user_newpass_time` binary(14) DEFAULT NULL, `user_email` tinyblob 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, `user_password_expires` varbinary(14) DEFAULT NULL, PRIMARY KEY (`user_id`), UNIQUE KEY `user_name` (`user_name`), KEY `user_email_token` (`user_email_token`), KEY `user_email` (`user_email`(50)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `user_former_groups` -- DROP TABLE IF EXISTS `user_former_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_former_groups` ( `ufg_user` int(10) unsigned NOT NULL DEFAULT '0', `ufg_group` varbinary(255) NOT NULL DEFAULT '', PRIMARY KEY (`ufg_user`,`ufg_group`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `user_groups` -- DROP TABLE IF EXISTS `user_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_groups` ( `ug_user` int(10) unsigned NOT NULL DEFAULT '0', `ug_group` varbinary(255) NOT NULL DEFAULT '', `ug_expiry` varbinary(14) DEFAULT NULL, PRIMARY KEY (`ug_user`,`ug_group`), KEY `ug_group` (`ug_group`), KEY `ug_expiry` (`ug_expiry`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `user_newtalk` -- DROP TABLE IF EXISTS `user_newtalk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_newtalk` ( `user_id` int(10) unsigned NOT NULL DEFAULT '0', `user_ip` varbinary(40) NOT NULL DEFAULT '', `user_last_timestamp` varbinary(14) DEFAULT NULL, KEY `user_id` (`user_id`), KEY `user_ip` (`user_ip`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `user_properties` -- DROP TABLE IF EXISTS `user_properties`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_properties` ( `up_user` int(10) unsigned NOT NULL, `up_property` varbinary(255) NOT NULL, `up_value` blob, PRIMARY KEY (`up_user`,`up_property`), KEY `user_properties_property` (`up_property`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `valid_tag` -- DROP TABLE IF EXISTS `valid_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `valid_tag` ( `vt_tag` varbinary(255) NOT NULL, PRIMARY KEY (`vt_tag`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `watchlist` -- DROP TABLE IF EXISTS `watchlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `watchlist` ( `wl_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `wl_user` int(10) unsigned NOT NULL, `wl_namespace` int(11) NOT NULL DEFAULT '0', `wl_title` varbinary(255) NOT NULL DEFAULT '', `wl_notificationtimestamp` varbinary(14) DEFAULT NULL, PRIMARY KEY (`wl_id`), UNIQUE KEY `wl_user` (`wl_user`,`wl_namespace`,`wl_title`), KEY `namespace_title` (`wl_namespace`,`wl_title`), KEY `wl_user_notificationtimestamp` (`wl_user`,`wl_notificationtimestamp`) ) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `wb_changes` -- DROP TABLE IF EXISTS `wb_changes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wb_changes` ( `change_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `change_type` varbinary(25) NOT NULL, `change_time` varbinary(14) NOT NULL, `change_object_id` varbinary(14) NOT NULL, `change_revision_id` int(10) unsigned NOT NULL, `change_user_id` int(10) unsigned NOT NULL, `change_info` mediumblob NOT NULL, PRIMARY KEY (`change_id`), KEY `wb_changes_change_type` (`change_type`), KEY `wb_changes_change_time` (`change_time`), KEY `wb_changes_change_object_id` (`change_object_id`), KEY `wb_changes_change_user_id` (`change_user_id`), KEY `wb_changes_change_revision_id` (`change_revision_id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `wb_changes_dispatch` -- DROP TABLE IF EXISTS `wb_changes_dispatch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wb_changes_dispatch` ( `chd_site` varbinary(32) NOT NULL, `chd_db` varbinary(32) NOT NULL, `chd_seen` int(11) NOT NULL DEFAULT '0', `chd_touched` varbinary(14) NOT NULL DEFAULT '00000000000000', `chd_lock` varbinary(64) DEFAULT NULL, `chd_disabled` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`chd_site`), KEY `wb_changes_dispatch_chd_seen` (`chd_seen`), KEY `wb_changes_dispatch_chd_touched` (`chd_touched`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `wb_changes_subscription` -- DROP TABLE IF EXISTS `wb_changes_subscription`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wb_changes_subscription` ( `cs_row_id` bigint(20) NOT NULL AUTO_INCREMENT, `cs_entity_id` varbinary(255) NOT NULL, `cs_subscriber_id` varbinary(255) NOT NULL, PRIMARY KEY (`cs_row_id`), UNIQUE KEY `cs_entity_id` (`cs_entity_id`,`cs_subscriber_id`), KEY `cs_subscriber_id` (`cs_subscriber_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `wb_entity_per_page` -- DROP TABLE IF EXISTS `wb_entity_per_page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wb_entity_per_page` ( `epp_entity_id` int(10) unsigned NOT NULL, `epp_entity_type` varbinary(32) NOT NULL, `epp_page_id` int(10) unsigned NOT NULL, `epp_redirect_target` varbinary(255) DEFAULT NULL, UNIQUE KEY `wb_epp_entity` (`epp_entity_id`,`epp_entity_type`), UNIQUE KEY `wb_epp_page` (`epp_page_id`), KEY `epp_redirect_target` (`epp_redirect_target`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `wb_id_counters` -- DROP TABLE IF EXISTS `wb_id_counters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wb_id_counters` ( `id_value` int(10) unsigned NOT NULL, `id_type` varbinary(32) NOT NULL, UNIQUE KEY `wb_id_counters_type` (`id_type`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `wb_items_per_site` -- DROP TABLE IF EXISTS `wb_items_per_site`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wb_items_per_site` ( `ips_row_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `ips_item_id` int(10) unsigned NOT NULL, `ips_site_id` varbinary(32) NOT NULL, `ips_site_page` varbinary(310) NOT NULL, PRIMARY KEY (`ips_row_id`), UNIQUE KEY `wb_ips_item_site_page` (`ips_site_id`,`ips_site_page`), KEY `wb_ips_item_id` (`ips_item_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `wb_property_info` -- DROP TABLE IF EXISTS `wb_property_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wb_property_info` ( `pi_property_id` int(10) unsigned NOT NULL, `pi_type` varbinary(32) NOT NULL, `pi_info` blob NOT NULL, PRIMARY KEY (`pi_property_id`), KEY `pi_type` (`pi_type`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `wb_terms` -- DROP TABLE IF EXISTS `wb_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wb_terms` ( `term_row_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_entity_id` int(10) unsigned NOT NULL, `term_full_entity_id` varbinary(32) DEFAULT NULL, `term_entity_type` varbinary(32) NOT NULL, `term_language` varbinary(32) NOT NULL, `term_type` varbinary(32) NOT NULL, `term_text` varbinary(255) NOT NULL, `term_search_key` varbinary(255) NOT NULL, `term_weight` float unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`term_row_id`), KEY `term_full_entity` (`term_full_entity_id`), KEY `term_text` (`term_text`,`term_language`), KEY `term_search_key` (`term_search_key`,`term_language`), KEY `term_search_full` (`term_language`,`term_full_entity_id`,`term_type`,`term_search_key`(16)), KEY `tmp1` (`term_language`,`term_type`,`term_entity_type`,`term_search_key`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `wbc_entity_usage` -- DROP TABLE IF EXISTS `wbc_entity_usage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wbc_entity_usage` ( `eu_row_id` bigint(20) NOT NULL AUTO_INCREMENT, `eu_entity_id` varbinary(255) NOT NULL, `eu_aspect` varbinary(37) NOT NULL, `eu_page_id` int(11) NOT NULL, PRIMARY KEY (`eu_row_id`), UNIQUE KEY `eu_entity_id` (`eu_entity_id`,`eu_aspect`,`eu_page_id`), KEY `eu_page_id` (`eu_page_id`,`eu_entity_id`) ) ENGINE=InnoDB DEFAULT CHARSET=binary; /*!40101 SET character_set_client = @saved_cs_client */; /*!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 2019-09-27 9:27:37