Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- --------------------------------------------------------
- -- Host: x
- -- Server version: 5.7.42-0ubuntu0.18.04.1 - (Ubuntu)
- -- Server OS: Linux
- -- HeidiSQL Version: 12.5.0.6677
- -- --------------------------------------------------------
- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
- /*!40101 SET NAMES utf8 */;
- /*!50503 SET NAMES utf8mb4 */;
- /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
- /*!40103 SET TIME_ZONE='+00:00' */;
- /*!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 */;
- -- Dumping structure for table biowiki.archive
- CREATE TABLE IF NOT EXISTS `archive` (
- `ar_namespace` int(11) NOT NULL DEFAULT '0',
- `ar_title` varbinary(255) 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` varbinary(255) 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,
- `ar_parent_id` int(10) unsigned DEFAULT NULL,
- `ar_sha1` varbinary(32) NOT NULL DEFAULT '',
- KEY `name_title_timestamp` (`ar_namespace`,`ar_title`,`ar_timestamp`),
- KEY `usertext_timestamp` (`ar_user_text`,`ar_timestamp`),
- KEY `ar_revid` (`ar_rev_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.category
- CREATE TABLE IF NOT EXISTS `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',
- `cat_hidden` tinyint(3) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`cat_id`),
- UNIQUE KEY `cat_title` (`cat_title`),
- KEY `cat_pages` (`cat_pages`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.categorylinks
- CREATE TABLE IF NOT EXISTS `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',
- UNIQUE KEY `cl_from` (`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` (`cl_collation`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.change_tag
- CREATE TABLE IF NOT EXISTS `change_tag` (
- `ct_rc_id` int(11) DEFAULT NULL,
- `ct_log_id` int(11) DEFAULT NULL,
- `ct_rev_id` int(11) DEFAULT NULL,
- `ct_tag` varbinary(255) NOT NULL,
- `ct_params` blob,
- UNIQUE KEY `change_tag_rc_tag` (`ct_rc_id`,`ct_tag`),
- UNIQUE KEY `change_tag_log_tag` (`ct_log_id`,`ct_tag`),
- UNIQUE KEY `change_tag_rev_tag` (`ct_rev_id`,`ct_tag`),
- KEY `change_tag_tag_id` (`ct_tag`,`ct_rc_id`,`ct_rev_id`,`ct_log_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.externallinks
- CREATE TABLE IF NOT EXISTS `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=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.external_user
- CREATE TABLE IF NOT EXISTS `external_user` (
- `eu_local_id` int(10) unsigned NOT NULL,
- `eu_external_id` varbinary(255) NOT NULL,
- PRIMARY KEY (`eu_local_id`),
- UNIQUE KEY `eu_external_id` (`eu_external_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.filearchive
- CREATE TABLE IF NOT EXISTS `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` blob,
- `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(100) DEFAULT 'unknown',
- `fa_description` tinyblob,
- `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',
- 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`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.hitcounter
- CREATE TABLE IF NOT EXISTS `hitcounter` (
- `hc_id` int(10) unsigned NOT NULL
- ) ENGINE=MEMORY DEFAULT CHARSET=latin1 MAX_ROWS=25000;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.image
- CREATE TABLE IF NOT EXISTS `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') DEFAULT NULL,
- `img_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart') NOT NULL DEFAULT 'unknown',
- `img_minor_mime` varbinary(100) NOT NULL DEFAULT 'unknown',
- `img_description` tinyblob NOT NULL,
- `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_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=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.imagelinks
- CREATE TABLE IF NOT EXISTS `imagelinks` (
- `il_from` int(10) unsigned NOT NULL DEFAULT '0',
- `il_to` varbinary(255) NOT NULL DEFAULT '',
- UNIQUE KEY `il_from` (`il_from`,`il_to`),
- UNIQUE KEY `il_to` (`il_to`,`il_from`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.interwiki
- CREATE TABLE IF NOT EXISTS `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',
- UNIQUE KEY `iw_prefix` (`iw_prefix`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.ipblocks
- CREATE TABLE IF NOT EXISTS `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` 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',
- `ipb_allow_usertalk` 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=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.iwlinks
- CREATE TABLE IF NOT EXISTS `iwlinks` (
- `iwl_from` int(10) unsigned NOT NULL DEFAULT '0',
- `iwl_prefix` varbinary(20) NOT NULL DEFAULT '',
- `iwl_title` varbinary(255) NOT NULL DEFAULT '',
- UNIQUE KEY `iwl_from` (`iwl_from`,`iwl_prefix`,`iwl_title`),
- UNIQUE KEY `iwl_prefix_title_from` (`iwl_prefix`,`iwl_title`,`iwl_from`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.job
- CREATE TABLE IF NOT EXISTS `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,
- PRIMARY KEY (`job_id`),
- KEY `job_cmd` (`job_cmd`,`job_namespace`,`job_title`,`job_params`(128)),
- KEY `job_timestamp` (`job_timestamp`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.l10n_cache
- CREATE TABLE IF NOT EXISTS `l10n_cache` (
- `lc_lang` varbinary(32) NOT NULL,
- `lc_key` varbinary(255) NOT NULL,
- `lc_value` mediumblob NOT NULL,
- KEY `lc_lang_key` (`lc_lang`,`lc_key`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.langlinks
- CREATE TABLE IF NOT EXISTS `langlinks` (
- `ll_from` int(10) unsigned NOT NULL DEFAULT '0',
- `ll_lang` varbinary(20) NOT NULL DEFAULT '',
- `ll_title` varbinary(255) NOT NULL DEFAULT '',
- UNIQUE KEY `ll_from` (`ll_from`,`ll_lang`),
- KEY `ll_lang` (`ll_lang`,`ll_title`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.logging
- CREATE TABLE IF NOT EXISTS `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(255) NOT NULL DEFAULT '',
- `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 `type_action` (`log_type`,`log_action`,`log_timestamp`)
- ) ENGINE=InnoDB AUTO_INCREMENT=135 DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.log_search
- CREATE TABLE IF NOT EXISTS `log_search` (
- `ls_field` varbinary(32) NOT NULL,
- `ls_value` varbinary(255) NOT NULL,
- `ls_log_id` int(10) unsigned NOT NULL DEFAULT '0',
- UNIQUE KEY `ls_field_val` (`ls_field`,`ls_value`,`ls_log_id`),
- KEY `ls_log_id` (`ls_log_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.module_deps
- CREATE TABLE IF NOT EXISTS `module_deps` (
- `md_module` varbinary(255) NOT NULL,
- `md_skin` varbinary(32) NOT NULL,
- `md_deps` mediumblob NOT NULL,
- UNIQUE KEY `md_module_skin` (`md_module`,`md_skin`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.msg_resource
- CREATE TABLE IF NOT EXISTS `msg_resource` (
- `mr_resource` varbinary(255) NOT NULL,
- `mr_lang` varbinary(32) NOT NULL,
- `mr_blob` mediumblob NOT NULL,
- `mr_timestamp` binary(14) NOT NULL,
- UNIQUE KEY `mr_resource_lang` (`mr_resource`,`mr_lang`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.msg_resource_links
- CREATE TABLE IF NOT EXISTS `msg_resource_links` (
- `mrl_resource` varbinary(255) NOT NULL,
- `mrl_message` varbinary(255) NOT NULL,
- UNIQUE KEY `mrl_message_resource` (`mrl_message`,`mrl_resource`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.objectcache
- CREATE TABLE IF NOT EXISTS `objectcache` (
- `keyname` varbinary(255) NOT NULL DEFAULT '',
- `value` mediumblob,
- `exptime` datetime DEFAULT NULL,
- PRIMARY KEY (`keyname`),
- KEY `exptime` (`exptime`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.oldimage
- CREATE TABLE IF NOT EXISTS `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` tinyblob NOT NULL,
- `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') DEFAULT NULL,
- `oi_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart') 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`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.page
- CREATE TABLE IF NOT EXISTS `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_counter` bigint(20) unsigned NOT NULL DEFAULT '0',
- `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_latest` int(10) unsigned NOT NULL,
- `page_len` int(10) unsigned NOT 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=80 DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.pagelinks
- CREATE TABLE IF NOT EXISTS `pagelinks` (
- `pl_from` int(10) unsigned NOT NULL DEFAULT '0',
- `pl_namespace` int(11) NOT NULL DEFAULT '0',
- `pl_title` varbinary(255) NOT NULL DEFAULT '',
- UNIQUE KEY `pl_from` (`pl_from`,`pl_namespace`,`pl_title`),
- UNIQUE KEY `pl_namespace` (`pl_namespace`,`pl_title`,`pl_from`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.page_props
- CREATE TABLE IF NOT EXISTS `page_props` (
- `pp_page` int(11) NOT NULL,
- `pp_propname` varbinary(60) NOT NULL,
- `pp_value` blob NOT NULL,
- UNIQUE KEY `pp_page_propname` (`pp_page`,`pp_propname`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.page_restrictions
- CREATE TABLE IF NOT EXISTS `page_restrictions` (
- `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(11) DEFAULT NULL,
- `pr_expiry` varbinary(14) DEFAULT NULL,
- `pr_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- 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;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.protected_titles
- CREATE TABLE IF NOT EXISTS `protected_titles` (
- `pt_namespace` int(11) NOT NULL,
- `pt_title` varbinary(255) NOT NULL,
- `pt_user` int(10) unsigned NOT NULL,
- `pt_reason` tinyblob,
- `pt_timestamp` binary(14) NOT NULL,
- `pt_expiry` varbinary(14) NOT NULL DEFAULT '',
- `pt_create_perm` varbinary(60) NOT NULL,
- UNIQUE KEY `pt_namespace_title` (`pt_namespace`,`pt_title`),
- KEY `pt_timestamp` (`pt_timestamp`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.querycache
- CREATE TABLE IF NOT EXISTS `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;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.querycachetwo
- CREATE TABLE IF NOT EXISTS `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;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.querycache_info
- CREATE TABLE IF NOT EXISTS `querycache_info` (
- `qci_type` varbinary(32) NOT NULL DEFAULT '',
- `qci_timestamp` binary(14) NOT NULL DEFAULT '19700101000000',
- UNIQUE KEY `qci_type` (`qci_type`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.recentchanges
- CREATE TABLE IF NOT EXISTS `recentchanges` (
- `rc_id` int(11) NOT NULL AUTO_INCREMENT,
- `rc_timestamp` varbinary(14) NOT NULL DEFAULT '',
- `rc_cur_time` 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(255) NOT NULL DEFAULT '',
- `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_moved_to_ns` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `rc_moved_to_title` varbinary(255) 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_namespace_title` (`rc_namespace`,`rc_title`),
- 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`)
- ) ENGINE=InnoDB AUTO_INCREMENT=312 DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.redirect
- CREATE TABLE IF NOT EXISTS `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;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.revision
- CREATE TABLE IF NOT EXISTS `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,
- `rev_comment` tinyblob NOT NULL,
- `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 '',
- PRIMARY KEY (`rev_id`),
- UNIQUE 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`)
- ) ENGINE=InnoDB AUTO_INCREMENT=287 DEFAULT CHARSET=binary MAX_ROWS=10000000 AVG_ROW_LENGTH=1024;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.searchindex
- CREATE TABLE IF NOT EXISTS `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=latin1;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.site_stats
- CREATE TABLE IF NOT EXISTS `site_stats` (
- `ss_row_id` int(10) unsigned NOT NULL,
- `ss_total_views` bigint(20) unsigned DEFAULT '0',
- `ss_total_edits` bigint(20) unsigned DEFAULT '0',
- `ss_good_articles` bigint(20) unsigned DEFAULT '0',
- `ss_total_pages` bigint(20) DEFAULT '-1',
- `ss_users` bigint(20) DEFAULT '-1',
- `ss_active_users` bigint(20) DEFAULT '-1',
- `ss_admins` int(11) DEFAULT '-1',
- `ss_images` int(11) DEFAULT '0',
- UNIQUE KEY `ss_row_id` (`ss_row_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.tag_summary
- CREATE TABLE IF NOT EXISTS `tag_summary` (
- `ts_rc_id` int(11) DEFAULT NULL,
- `ts_log_id` int(11) DEFAULT NULL,
- `ts_rev_id` int(11) DEFAULT NULL,
- `ts_tags` blob NOT NULL,
- 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;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.templatelinks
- CREATE TABLE IF NOT EXISTS `templatelinks` (
- `tl_from` int(10) unsigned NOT NULL DEFAULT '0',
- `tl_namespace` int(11) NOT NULL DEFAULT '0',
- `tl_title` varbinary(255) NOT NULL DEFAULT '',
- UNIQUE KEY `tl_from` (`tl_from`,`tl_namespace`,`tl_title`),
- UNIQUE KEY `tl_namespace` (`tl_namespace`,`tl_title`,`tl_from`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.text
- CREATE TABLE IF NOT EXISTS `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=267 DEFAULT CHARSET=binary MAX_ROWS=10000000 AVG_ROW_LENGTH=10240;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.transcache
- CREATE TABLE IF NOT EXISTS `transcache` (
- `tc_url` varbinary(255) NOT NULL,
- `tc_contents` blob,
- `tc_time` binary(14) NOT NULL,
- UNIQUE KEY `tc_url_idx` (`tc_url`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.updatelog
- CREATE TABLE IF NOT EXISTS `updatelog` (
- `ul_key` varbinary(255) NOT NULL,
- `ul_value` blob,
- PRIMARY KEY (`ul_key`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.uploadstash
- CREATE TABLE IF NOT EXISTS `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_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') 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;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.user
- CREATE TABLE IF NOT EXISTS `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,
- 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=9 DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.user_former_groups
- CREATE TABLE IF NOT EXISTS `user_former_groups` (
- `ufg_user` int(10) unsigned NOT NULL DEFAULT '0',
- `ufg_group` varbinary(32) NOT NULL DEFAULT '',
- UNIQUE KEY `ufg_user_group` (`ufg_user`,`ufg_group`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.user_groups
- CREATE TABLE IF NOT EXISTS `user_groups` (
- `ug_user` int(10) unsigned NOT NULL DEFAULT '0',
- `ug_group` varbinary(32) NOT NULL DEFAULT '',
- UNIQUE KEY `ug_user_group` (`ug_user`,`ug_group`),
- KEY `ug_group` (`ug_group`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.user_newtalk
- CREATE TABLE IF NOT EXISTS `user_newtalk` (
- `user_id` int(11) 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;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.user_properties
- CREATE TABLE IF NOT EXISTS `user_properties` (
- `up_user` int(11) NOT NULL,
- `up_property` varbinary(255) NOT NULL,
- `up_value` blob,
- UNIQUE KEY `user_properties_user_property` (`up_user`,`up_property`),
- KEY `user_properties_property` (`up_property`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.valid_tag
- CREATE TABLE IF NOT EXISTS `valid_tag` (
- `vt_tag` varbinary(255) NOT NULL,
- PRIMARY KEY (`vt_tag`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- -- Dumping structure for table biowiki.watchlist
- CREATE TABLE IF NOT EXISTS `watchlist` (
- `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,
- UNIQUE KEY `wl_user` (`wl_user`,`wl_namespace`,`wl_title`),
- KEY `namespace_title` (`wl_namespace`,`wl_title`)
- ) ENGINE=InnoDB DEFAULT CHARSET=binary;
- -- Data exporting was unselected.
- /*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
- /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
- /*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
- /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
- /*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement