Advertisement
Guest User

Untitled

a guest
Aug 1st, 2023
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 30.57 KB | None | 0 0
  1. -- --------------------------------------------------------
  2. -- Host:                         x
  3. -- Server version:               5.7.42-0ubuntu0.18.04.1 - (Ubuntu)
  4. -- Server OS:                    Linux
  5. -- HeidiSQL Version:             12.5.0.6677
  6. -- --------------------------------------------------------
  7.  
  8. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  9. /*!40101 SET NAMES utf8 */;
  10. /*!50503 SET NAMES utf8mb4 */;
  11. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  12. /*!40103 SET TIME_ZONE='+00:00' */;
  13. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  14. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  15. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  16.  
  17. -- Dumping structure for table biowiki.archive
  18. CREATE TABLE IF NOT EXISTS `archive` (
  19.   `ar_namespace` int(11) NOT NULL DEFAULT '0',
  20.   `ar_title` varbinary(255) NOT NULL DEFAULT '',
  21.   `ar_text` mediumblob NOT NULL,
  22.   `ar_comment` tinyblob NOT NULL,
  23.   `ar_user` int(10) unsigned NOT NULL DEFAULT '0',
  24.   `ar_user_text` varbinary(255) NOT NULL,
  25.   `ar_timestamp` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  26.   `ar_minor_edit` tinyint(4) NOT NULL DEFAULT '0',
  27.   `ar_flags` tinyblob NOT NULL,
  28.   `ar_rev_id` int(10) unsigned DEFAULT NULL,
  29.   `ar_text_id` int(10) unsigned DEFAULT NULL,
  30.   `ar_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0',
  31.   `ar_len` int(10) unsigned DEFAULT NULL,
  32.   `ar_page_id` int(10) unsigned DEFAULT NULL,
  33.   `ar_parent_id` int(10) unsigned DEFAULT NULL,
  34.   `ar_sha1` varbinary(32) NOT NULL DEFAULT '',
  35.   KEY `name_title_timestamp` (`ar_namespace`,`ar_title`,`ar_timestamp`),
  36.   KEY `usertext_timestamp` (`ar_user_text`,`ar_timestamp`),
  37.   KEY `ar_revid` (`ar_rev_id`)
  38. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  39.  
  40. -- Data exporting was unselected.
  41.  
  42. -- Dumping structure for table biowiki.category
  43. CREATE TABLE IF NOT EXISTS `category` (
  44.   `cat_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  45.   `cat_title` varbinary(255) NOT NULL,
  46.   `cat_pages` int(11) NOT NULL DEFAULT '0',
  47.   `cat_subcats` int(11) NOT NULL DEFAULT '0',
  48.   `cat_files` int(11) NOT NULL DEFAULT '0',
  49.   `cat_hidden` tinyint(3) unsigned NOT NULL DEFAULT '0',
  50.   PRIMARY KEY (`cat_id`),
  51.   UNIQUE KEY `cat_title` (`cat_title`),
  52.   KEY `cat_pages` (`cat_pages`)
  53. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  54.  
  55. -- Data exporting was unselected.
  56.  
  57. -- Dumping structure for table biowiki.categorylinks
  58. CREATE TABLE IF NOT EXISTS `categorylinks` (
  59.   `cl_from` int(10) unsigned NOT NULL DEFAULT '0',
  60.   `cl_to` varbinary(255) NOT NULL DEFAULT '',
  61.   `cl_sortkey` varbinary(230) NOT NULL DEFAULT '',
  62.   `cl_sortkey_prefix` varbinary(255) NOT NULL DEFAULT '',
  63.   `cl_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  64.   `cl_collation` varbinary(32) NOT NULL DEFAULT '',
  65.   `cl_type` enum('page','subcat','file') NOT NULL DEFAULT 'page',
  66.   UNIQUE KEY `cl_from` (`cl_from`,`cl_to`),
  67.   KEY `cl_sortkey` (`cl_to`,`cl_type`,`cl_sortkey`,`cl_from`),
  68.   KEY `cl_timestamp` (`cl_to`,`cl_timestamp`),
  69.   KEY `cl_collation` (`cl_collation`)
  70. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  71.  
  72. -- Data exporting was unselected.
  73.  
  74. -- Dumping structure for table biowiki.change_tag
  75. CREATE TABLE IF NOT EXISTS `change_tag` (
  76.   `ct_rc_id` int(11) DEFAULT NULL,
  77.   `ct_log_id` int(11) DEFAULT NULL,
  78.   `ct_rev_id` int(11) DEFAULT NULL,
  79.   `ct_tag` varbinary(255) NOT NULL,
  80.   `ct_params` blob,
  81.   UNIQUE KEY `change_tag_rc_tag` (`ct_rc_id`,`ct_tag`),
  82.   UNIQUE KEY `change_tag_log_tag` (`ct_log_id`,`ct_tag`),
  83.   UNIQUE KEY `change_tag_rev_tag` (`ct_rev_id`,`ct_tag`),
  84.   KEY `change_tag_tag_id` (`ct_tag`,`ct_rc_id`,`ct_rev_id`,`ct_log_id`)
  85. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  86.  
  87. -- Data exporting was unselected.
  88.  
  89. -- Dumping structure for table biowiki.externallinks
  90. CREATE TABLE IF NOT EXISTS `externallinks` (
  91.   `el_from` int(10) unsigned NOT NULL DEFAULT '0',
  92.   `el_to` blob NOT NULL,
  93.   `el_index` blob NOT NULL,
  94.   KEY `el_from` (`el_from`,`el_to`(40)),
  95.   KEY `el_to` (`el_to`(60),`el_from`),
  96.   KEY `el_index` (`el_index`(60))
  97. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  98.  
  99. -- Data exporting was unselected.
  100.  
  101. -- Dumping structure for table biowiki.external_user
  102. CREATE TABLE IF NOT EXISTS `external_user` (
  103.   `eu_local_id` int(10) unsigned NOT NULL,
  104.   `eu_external_id` varbinary(255) NOT NULL,
  105.   PRIMARY KEY (`eu_local_id`),
  106.   UNIQUE KEY `eu_external_id` (`eu_external_id`)
  107. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  108.  
  109. -- Data exporting was unselected.
  110.  
  111. -- Dumping structure for table biowiki.filearchive
  112. CREATE TABLE IF NOT EXISTS `filearchive` (
  113.   `fa_id` int(11) NOT NULL AUTO_INCREMENT,
  114.   `fa_name` varbinary(255) NOT NULL DEFAULT '',
  115.   `fa_archive_name` varbinary(255) DEFAULT '',
  116.   `fa_storage_group` varbinary(16) DEFAULT NULL,
  117.   `fa_storage_key` varbinary(64) DEFAULT '',
  118.   `fa_deleted_user` int(11) DEFAULT NULL,
  119.   `fa_deleted_timestamp` binary(14) DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  120.   `fa_deleted_reason` blob,
  121.   `fa_size` int(10) unsigned DEFAULT '0',
  122.   `fa_width` int(11) DEFAULT '0',
  123.   `fa_height` int(11) DEFAULT '0',
  124.   `fa_metadata` mediumblob,
  125.   `fa_bits` int(11) DEFAULT '0',
  126.   `fa_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE') DEFAULT NULL,
  127.   `fa_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart') DEFAULT 'unknown',
  128.   `fa_minor_mime` varbinary(100) DEFAULT 'unknown',
  129.   `fa_description` tinyblob,
  130.   `fa_user` int(10) unsigned DEFAULT '0',
  131.   `fa_user_text` varbinary(255) DEFAULT NULL,
  132.   `fa_timestamp` binary(14) DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  133.   `fa_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0',
  134.   PRIMARY KEY (`fa_id`),
  135.   KEY `fa_name` (`fa_name`,`fa_timestamp`),
  136.   KEY `fa_storage_group` (`fa_storage_group`,`fa_storage_key`),
  137.   KEY `fa_deleted_timestamp` (`fa_deleted_timestamp`),
  138.   KEY `fa_user_timestamp` (`fa_user_text`,`fa_timestamp`)
  139. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  140.  
  141. -- Data exporting was unselected.
  142.  
  143. -- Dumping structure for table biowiki.hitcounter
  144. CREATE TABLE IF NOT EXISTS `hitcounter` (
  145.   `hc_id` int(10) unsigned NOT NULL
  146. ) ENGINE=MEMORY DEFAULT CHARSET=latin1 MAX_ROWS=25000;
  147.  
  148. -- Data exporting was unselected.
  149.  
  150. -- Dumping structure for table biowiki.image
  151. CREATE TABLE IF NOT EXISTS `image` (
  152.   `img_name` varbinary(255) NOT NULL DEFAULT '',
  153.   `img_size` int(10) unsigned NOT NULL DEFAULT '0',
  154.   `img_width` int(11) NOT NULL DEFAULT '0',
  155.   `img_height` int(11) NOT NULL DEFAULT '0',
  156.   `img_metadata` mediumblob NOT NULL,
  157.   `img_bits` int(11) NOT NULL DEFAULT '0',
  158.   `img_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE') DEFAULT NULL,
  159.   `img_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart') NOT NULL DEFAULT 'unknown',
  160.   `img_minor_mime` varbinary(100) NOT NULL DEFAULT 'unknown',
  161.   `img_description` tinyblob NOT NULL,
  162.   `img_user` int(10) unsigned NOT NULL DEFAULT '0',
  163.   `img_user_text` varbinary(255) NOT NULL,
  164.   `img_timestamp` varbinary(14) NOT NULL DEFAULT '',
  165.   `img_sha1` varbinary(32) NOT NULL DEFAULT '',
  166.   PRIMARY KEY (`img_name`),
  167.   KEY `img_usertext_timestamp` (`img_user_text`,`img_timestamp`),
  168.   KEY `img_size` (`img_size`),
  169.   KEY `img_timestamp` (`img_timestamp`),
  170.   KEY `img_sha1` (`img_sha1`)
  171. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  172.  
  173. -- Data exporting was unselected.
  174.  
  175. -- Dumping structure for table biowiki.imagelinks
  176. CREATE TABLE IF NOT EXISTS `imagelinks` (
  177.   `il_from` int(10) unsigned NOT NULL DEFAULT '0',
  178.   `il_to` varbinary(255) NOT NULL DEFAULT '',
  179.   UNIQUE KEY `il_from` (`il_from`,`il_to`),
  180.   UNIQUE KEY `il_to` (`il_to`,`il_from`)
  181. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  182.  
  183. -- Data exporting was unselected.
  184.  
  185. -- Dumping structure for table biowiki.interwiki
  186. CREATE TABLE IF NOT EXISTS `interwiki` (
  187.   `iw_prefix` varbinary(32) NOT NULL,
  188.   `iw_url` blob NOT NULL,
  189.   `iw_api` blob NOT NULL,
  190.   `iw_wikiid` varbinary(64) NOT NULL,
  191.   `iw_local` tinyint(1) NOT NULL,
  192.   `iw_trans` tinyint(4) NOT NULL DEFAULT '0',
  193.   UNIQUE KEY `iw_prefix` (`iw_prefix`)
  194. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  195.  
  196. -- Data exporting was unselected.
  197.  
  198. -- Dumping structure for table biowiki.ipblocks
  199. CREATE TABLE IF NOT EXISTS `ipblocks` (
  200.   `ipb_id` int(11) NOT NULL AUTO_INCREMENT,
  201.   `ipb_address` tinyblob NOT NULL,
  202.   `ipb_user` int(10) unsigned NOT NULL DEFAULT '0',
  203.   `ipb_by` int(10) unsigned NOT NULL DEFAULT '0',
  204.   `ipb_by_text` varbinary(255) NOT NULL DEFAULT '',
  205.   `ipb_reason` tinyblob NOT NULL,
  206.   `ipb_timestamp` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  207.   `ipb_auto` tinyint(1) NOT NULL DEFAULT '0',
  208.   `ipb_anon_only` tinyint(1) NOT NULL DEFAULT '0',
  209.   `ipb_create_account` tinyint(1) NOT NULL DEFAULT '1',
  210.   `ipb_enable_autoblock` tinyint(1) NOT NULL DEFAULT '1',
  211.   `ipb_expiry` varbinary(14) NOT NULL DEFAULT '',
  212.   `ipb_range_start` tinyblob NOT NULL,
  213.   `ipb_range_end` tinyblob NOT NULL,
  214.   `ipb_deleted` tinyint(1) NOT NULL DEFAULT '0',
  215.   `ipb_block_email` tinyint(1) NOT NULL DEFAULT '0',
  216.   `ipb_allow_usertalk` tinyint(1) NOT NULL DEFAULT '0',
  217.   PRIMARY KEY (`ipb_id`),
  218.   UNIQUE KEY `ipb_address` (`ipb_address`(255),`ipb_user`,`ipb_auto`,`ipb_anon_only`),
  219.   KEY `ipb_user` (`ipb_user`),
  220.   KEY `ipb_range` (`ipb_range_start`(8),`ipb_range_end`(8)),
  221.   KEY `ipb_timestamp` (`ipb_timestamp`),
  222.   KEY `ipb_expiry` (`ipb_expiry`)
  223. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  224.  
  225. -- Data exporting was unselected.
  226.  
  227. -- Dumping structure for table biowiki.iwlinks
  228. CREATE TABLE IF NOT EXISTS `iwlinks` (
  229.   `iwl_from` int(10) unsigned NOT NULL DEFAULT '0',
  230.   `iwl_prefix` varbinary(20) NOT NULL DEFAULT '',
  231.   `iwl_title` varbinary(255) NOT NULL DEFAULT '',
  232.   UNIQUE KEY `iwl_from` (`iwl_from`,`iwl_prefix`,`iwl_title`),
  233.   UNIQUE KEY `iwl_prefix_title_from` (`iwl_prefix`,`iwl_title`,`iwl_from`)
  234. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  235.  
  236. -- Data exporting was unselected.
  237.  
  238. -- Dumping structure for table biowiki.job
  239. CREATE TABLE IF NOT EXISTS `job` (
  240.   `job_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  241.   `job_cmd` varbinary(60) NOT NULL DEFAULT '',
  242.   `job_namespace` int(11) NOT NULL,
  243.   `job_title` varbinary(255) NOT NULL,
  244.   `job_timestamp` varbinary(14) DEFAULT NULL,
  245.   `job_params` blob NOT NULL,
  246.   PRIMARY KEY (`job_id`),
  247.   KEY `job_cmd` (`job_cmd`,`job_namespace`,`job_title`,`job_params`(128)),
  248.   KEY `job_timestamp` (`job_timestamp`)
  249. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  250.  
  251. -- Data exporting was unselected.
  252.  
  253. -- Dumping structure for table biowiki.l10n_cache
  254. CREATE TABLE IF NOT EXISTS `l10n_cache` (
  255.   `lc_lang` varbinary(32) NOT NULL,
  256.   `lc_key` varbinary(255) NOT NULL,
  257.   `lc_value` mediumblob NOT NULL,
  258.   KEY `lc_lang_key` (`lc_lang`,`lc_key`)
  259. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  260.  
  261. -- Data exporting was unselected.
  262.  
  263. -- Dumping structure for table biowiki.langlinks
  264. CREATE TABLE IF NOT EXISTS `langlinks` (
  265.   `ll_from` int(10) unsigned NOT NULL DEFAULT '0',
  266.   `ll_lang` varbinary(20) NOT NULL DEFAULT '',
  267.   `ll_title` varbinary(255) NOT NULL DEFAULT '',
  268.   UNIQUE KEY `ll_from` (`ll_from`,`ll_lang`),
  269.   KEY `ll_lang` (`ll_lang`,`ll_title`)
  270. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  271.  
  272. -- Data exporting was unselected.
  273.  
  274. -- Dumping structure for table biowiki.logging
  275. CREATE TABLE IF NOT EXISTS `logging` (
  276.   `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  277.   `log_type` varbinary(32) NOT NULL DEFAULT '',
  278.   `log_action` varbinary(32) NOT NULL DEFAULT '',
  279.   `log_timestamp` binary(14) NOT NULL DEFAULT '19700101000000',
  280.   `log_user` int(10) unsigned NOT NULL DEFAULT '0',
  281.   `log_user_text` varbinary(255) NOT NULL DEFAULT '',
  282.   `log_namespace` int(11) NOT NULL DEFAULT '0',
  283.   `log_title` varbinary(255) NOT NULL DEFAULT '',
  284.   `log_page` int(10) unsigned DEFAULT NULL,
  285.   `log_comment` varbinary(255) NOT NULL DEFAULT '',
  286.   `log_params` blob NOT NULL,
  287.   `log_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0',
  288.   PRIMARY KEY (`log_id`),
  289.   KEY `type_time` (`log_type`,`log_timestamp`),
  290.   KEY `user_time` (`log_user`,`log_timestamp`),
  291.   KEY `page_time` (`log_namespace`,`log_title`,`log_timestamp`),
  292.   KEY `times` (`log_timestamp`),
  293.   KEY `log_user_type_time` (`log_user`,`log_type`,`log_timestamp`),
  294.   KEY `log_page_id_time` (`log_page`,`log_timestamp`),
  295.   KEY `type_action` (`log_type`,`log_action`,`log_timestamp`)
  296. ) ENGINE=InnoDB AUTO_INCREMENT=135 DEFAULT CHARSET=binary;
  297.  
  298. -- Data exporting was unselected.
  299.  
  300. -- Dumping structure for table biowiki.log_search
  301. CREATE TABLE IF NOT EXISTS `log_search` (
  302.   `ls_field` varbinary(32) NOT NULL,
  303.   `ls_value` varbinary(255) NOT NULL,
  304.   `ls_log_id` int(10) unsigned NOT NULL DEFAULT '0',
  305.   UNIQUE KEY `ls_field_val` (`ls_field`,`ls_value`,`ls_log_id`),
  306.   KEY `ls_log_id` (`ls_log_id`)
  307. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  308.  
  309. -- Data exporting was unselected.
  310.  
  311. -- Dumping structure for table biowiki.module_deps
  312. CREATE TABLE IF NOT EXISTS `module_deps` (
  313.   `md_module` varbinary(255) NOT NULL,
  314.   `md_skin` varbinary(32) NOT NULL,
  315.   `md_deps` mediumblob NOT NULL,
  316.   UNIQUE KEY `md_module_skin` (`md_module`,`md_skin`)
  317. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  318.  
  319. -- Data exporting was unselected.
  320.  
  321. -- Dumping structure for table biowiki.msg_resource
  322. CREATE TABLE IF NOT EXISTS `msg_resource` (
  323.   `mr_resource` varbinary(255) NOT NULL,
  324.   `mr_lang` varbinary(32) NOT NULL,
  325.   `mr_blob` mediumblob NOT NULL,
  326.   `mr_timestamp` binary(14) NOT NULL,
  327.   UNIQUE KEY `mr_resource_lang` (`mr_resource`,`mr_lang`)
  328. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  329.  
  330. -- Data exporting was unselected.
  331.  
  332. -- Dumping structure for table biowiki.msg_resource_links
  333. CREATE TABLE IF NOT EXISTS `msg_resource_links` (
  334.   `mrl_resource` varbinary(255) NOT NULL,
  335.   `mrl_message` varbinary(255) NOT NULL,
  336.   UNIQUE KEY `mrl_message_resource` (`mrl_message`,`mrl_resource`)
  337. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  338.  
  339. -- Data exporting was unselected.
  340.  
  341. -- Dumping structure for table biowiki.objectcache
  342. CREATE TABLE IF NOT EXISTS `objectcache` (
  343.   `keyname` varbinary(255) NOT NULL DEFAULT '',
  344.   `value` mediumblob,
  345.   `exptime` datetime DEFAULT NULL,
  346.   PRIMARY KEY (`keyname`),
  347.   KEY `exptime` (`exptime`)
  348. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  349.  
  350. -- Data exporting was unselected.
  351.  
  352. -- Dumping structure for table biowiki.oldimage
  353. CREATE TABLE IF NOT EXISTS `oldimage` (
  354.   `oi_name` varbinary(255) NOT NULL DEFAULT '',
  355.   `oi_archive_name` varbinary(255) NOT NULL DEFAULT '',
  356.   `oi_size` int(10) unsigned NOT NULL DEFAULT '0',
  357.   `oi_width` int(11) NOT NULL DEFAULT '0',
  358.   `oi_height` int(11) NOT NULL DEFAULT '0',
  359.   `oi_bits` int(11) NOT NULL DEFAULT '0',
  360.   `oi_description` tinyblob NOT NULL,
  361.   `oi_user` int(10) unsigned NOT NULL DEFAULT '0',
  362.   `oi_user_text` varbinary(255) NOT NULL,
  363.   `oi_timestamp` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  364.   `oi_metadata` mediumblob NOT NULL,
  365.   `oi_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE') DEFAULT NULL,
  366.   `oi_major_mime` enum('unknown','application','audio','image','text','video','message','model','multipart') NOT NULL DEFAULT 'unknown',
  367.   `oi_minor_mime` varbinary(100) NOT NULL DEFAULT 'unknown',
  368.   `oi_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0',
  369.   `oi_sha1` varbinary(32) NOT NULL DEFAULT '',
  370.   KEY `oi_usertext_timestamp` (`oi_user_text`,`oi_timestamp`),
  371.   KEY `oi_name_timestamp` (`oi_name`,`oi_timestamp`),
  372.   KEY `oi_name_archive_name` (`oi_name`,`oi_archive_name`(14)),
  373.   KEY `oi_sha1` (`oi_sha1`)
  374. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  375.  
  376. -- Data exporting was unselected.
  377.  
  378. -- Dumping structure for table biowiki.page
  379. CREATE TABLE IF NOT EXISTS `page` (
  380.   `page_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  381.   `page_namespace` int(11) NOT NULL,
  382.   `page_title` varbinary(255) NOT NULL,
  383.   `page_restrictions` tinyblob NOT NULL,
  384.   `page_counter` bigint(20) unsigned NOT NULL DEFAULT '0',
  385.   `page_is_redirect` tinyint(3) unsigned NOT NULL DEFAULT '0',
  386.   `page_is_new` tinyint(3) unsigned NOT NULL DEFAULT '0',
  387.   `page_random` double unsigned NOT NULL,
  388.   `page_touched` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  389.   `page_latest` int(10) unsigned NOT NULL,
  390.   `page_len` int(10) unsigned NOT NULL,
  391.   PRIMARY KEY (`page_id`),
  392.   UNIQUE KEY `name_title` (`page_namespace`,`page_title`),
  393.   KEY `page_random` (`page_random`),
  394.   KEY `page_len` (`page_len`),
  395.   KEY `page_redirect_namespace_len` (`page_is_redirect`,`page_namespace`,`page_len`)
  396. ) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=binary;
  397.  
  398. -- Data exporting was unselected.
  399.  
  400. -- Dumping structure for table biowiki.pagelinks
  401. CREATE TABLE IF NOT EXISTS `pagelinks` (
  402.   `pl_from` int(10) unsigned NOT NULL DEFAULT '0',
  403.   `pl_namespace` int(11) NOT NULL DEFAULT '0',
  404.   `pl_title` varbinary(255) NOT NULL DEFAULT '',
  405.   UNIQUE KEY `pl_from` (`pl_from`,`pl_namespace`,`pl_title`),
  406.   UNIQUE KEY `pl_namespace` (`pl_namespace`,`pl_title`,`pl_from`)
  407. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  408.  
  409. -- Data exporting was unselected.
  410.  
  411. -- Dumping structure for table biowiki.page_props
  412. CREATE TABLE IF NOT EXISTS `page_props` (
  413.   `pp_page` int(11) NOT NULL,
  414.   `pp_propname` varbinary(60) NOT NULL,
  415.   `pp_value` blob NOT NULL,
  416.   UNIQUE KEY `pp_page_propname` (`pp_page`,`pp_propname`)
  417. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  418.  
  419. -- Data exporting was unselected.
  420.  
  421. -- Dumping structure for table biowiki.page_restrictions
  422. CREATE TABLE IF NOT EXISTS `page_restrictions` (
  423.   `pr_page` int(11) NOT NULL,
  424.   `pr_type` varbinary(60) NOT NULL,
  425.   `pr_level` varbinary(60) NOT NULL,
  426.   `pr_cascade` tinyint(4) NOT NULL,
  427.   `pr_user` int(11) DEFAULT NULL,
  428.   `pr_expiry` varbinary(14) DEFAULT NULL,
  429.   `pr_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  430.   PRIMARY KEY (`pr_id`),
  431.   UNIQUE KEY `pr_pagetype` (`pr_page`,`pr_type`),
  432.   KEY `pr_typelevel` (`pr_type`,`pr_level`),
  433.   KEY `pr_level` (`pr_level`),
  434.   KEY `pr_cascade` (`pr_cascade`)
  435. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  436.  
  437. -- Data exporting was unselected.
  438.  
  439. -- Dumping structure for table biowiki.protected_titles
  440. CREATE TABLE IF NOT EXISTS `protected_titles` (
  441.   `pt_namespace` int(11) NOT NULL,
  442.   `pt_title` varbinary(255) NOT NULL,
  443.   `pt_user` int(10) unsigned NOT NULL,
  444.   `pt_reason` tinyblob,
  445.   `pt_timestamp` binary(14) NOT NULL,
  446.   `pt_expiry` varbinary(14) NOT NULL DEFAULT '',
  447.   `pt_create_perm` varbinary(60) NOT NULL,
  448.   UNIQUE KEY `pt_namespace_title` (`pt_namespace`,`pt_title`),
  449.   KEY `pt_timestamp` (`pt_timestamp`)
  450. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  451.  
  452. -- Data exporting was unselected.
  453.  
  454. -- Dumping structure for table biowiki.querycache
  455. CREATE TABLE IF NOT EXISTS `querycache` (
  456.   `qc_type` varbinary(32) NOT NULL,
  457.   `qc_value` int(10) unsigned NOT NULL DEFAULT '0',
  458.   `qc_namespace` int(11) NOT NULL DEFAULT '0',
  459.   `qc_title` varbinary(255) NOT NULL DEFAULT '',
  460.   KEY `qc_type` (`qc_type`,`qc_value`)
  461. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  462.  
  463. -- Data exporting was unselected.
  464.  
  465. -- Dumping structure for table biowiki.querycachetwo
  466. CREATE TABLE IF NOT EXISTS `querycachetwo` (
  467.   `qcc_type` varbinary(32) NOT NULL,
  468.   `qcc_value` int(10) unsigned NOT NULL DEFAULT '0',
  469.   `qcc_namespace` int(11) NOT NULL DEFAULT '0',
  470.   `qcc_title` varbinary(255) NOT NULL DEFAULT '',
  471.   `qcc_namespacetwo` int(11) NOT NULL DEFAULT '0',
  472.   `qcc_titletwo` varbinary(255) NOT NULL DEFAULT '',
  473.   KEY `qcc_type` (`qcc_type`,`qcc_value`),
  474.   KEY `qcc_title` (`qcc_type`,`qcc_namespace`,`qcc_title`),
  475.   KEY `qcc_titletwo` (`qcc_type`,`qcc_namespacetwo`,`qcc_titletwo`)
  476. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  477.  
  478. -- Data exporting was unselected.
  479.  
  480. -- Dumping structure for table biowiki.querycache_info
  481. CREATE TABLE IF NOT EXISTS `querycache_info` (
  482.   `qci_type` varbinary(32) NOT NULL DEFAULT '',
  483.   `qci_timestamp` binary(14) NOT NULL DEFAULT '19700101000000',
  484.   UNIQUE KEY `qci_type` (`qci_type`)
  485. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  486.  
  487. -- Data exporting was unselected.
  488.  
  489. -- Dumping structure for table biowiki.recentchanges
  490. CREATE TABLE IF NOT EXISTS `recentchanges` (
  491.   `rc_id` int(11) NOT NULL AUTO_INCREMENT,
  492.   `rc_timestamp` varbinary(14) NOT NULL DEFAULT '',
  493.   `rc_cur_time` varbinary(14) NOT NULL DEFAULT '',
  494.   `rc_user` int(10) unsigned NOT NULL DEFAULT '0',
  495.   `rc_user_text` varbinary(255) NOT NULL,
  496.   `rc_namespace` int(11) NOT NULL DEFAULT '0',
  497.   `rc_title` varbinary(255) NOT NULL DEFAULT '',
  498.   `rc_comment` varbinary(255) NOT NULL DEFAULT '',
  499.   `rc_minor` tinyint(3) unsigned NOT NULL DEFAULT '0',
  500.   `rc_bot` tinyint(3) unsigned NOT NULL DEFAULT '0',
  501.   `rc_new` tinyint(3) unsigned NOT NULL DEFAULT '0',
  502.   `rc_cur_id` int(10) unsigned NOT NULL DEFAULT '0',
  503.   `rc_this_oldid` int(10) unsigned NOT NULL DEFAULT '0',
  504.   `rc_last_oldid` int(10) unsigned NOT NULL DEFAULT '0',
  505.   `rc_type` tinyint(3) unsigned NOT NULL DEFAULT '0',
  506.   `rc_moved_to_ns` tinyint(3) unsigned NOT NULL DEFAULT '0',
  507.   `rc_moved_to_title` varbinary(255) NOT NULL DEFAULT '',
  508.   `rc_patrolled` tinyint(3) unsigned NOT NULL DEFAULT '0',
  509.   `rc_ip` varbinary(40) NOT NULL DEFAULT '',
  510.   `rc_old_len` int(11) DEFAULT NULL,
  511.   `rc_new_len` int(11) DEFAULT NULL,
  512.   `rc_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0',
  513.   `rc_logid` int(10) unsigned NOT NULL DEFAULT '0',
  514.   `rc_log_type` varbinary(255) DEFAULT NULL,
  515.   `rc_log_action` varbinary(255) DEFAULT NULL,
  516.   `rc_params` blob,
  517.   PRIMARY KEY (`rc_id`),
  518.   KEY `rc_timestamp` (`rc_timestamp`),
  519.   KEY `rc_namespace_title` (`rc_namespace`,`rc_title`),
  520.   KEY `rc_cur_id` (`rc_cur_id`),
  521.   KEY `new_name_timestamp` (`rc_new`,`rc_namespace`,`rc_timestamp`),
  522.   KEY `rc_ip` (`rc_ip`),
  523.   KEY `rc_ns_usertext` (`rc_namespace`,`rc_user_text`),
  524.   KEY `rc_user_text` (`rc_user_text`,`rc_timestamp`)
  525. ) ENGINE=InnoDB AUTO_INCREMENT=312 DEFAULT CHARSET=binary;
  526.  
  527. -- Data exporting was unselected.
  528.  
  529. -- Dumping structure for table biowiki.redirect
  530. CREATE TABLE IF NOT EXISTS `redirect` (
  531.   `rd_from` int(10) unsigned NOT NULL DEFAULT '0',
  532.   `rd_namespace` int(11) NOT NULL DEFAULT '0',
  533.   `rd_title` varbinary(255) NOT NULL DEFAULT '',
  534.   `rd_interwiki` varbinary(32) DEFAULT NULL,
  535.   `rd_fragment` varbinary(255) DEFAULT NULL,
  536.   PRIMARY KEY (`rd_from`),
  537.   KEY `rd_ns_title` (`rd_namespace`,`rd_title`,`rd_from`)
  538. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  539.  
  540. -- Data exporting was unselected.
  541.  
  542. -- Dumping structure for table biowiki.revision
  543. CREATE TABLE IF NOT EXISTS `revision` (
  544.   `rev_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  545.   `rev_page` int(10) unsigned NOT NULL,
  546.   `rev_text_id` int(10) unsigned NOT NULL,
  547.   `rev_comment` tinyblob NOT NULL,
  548.   `rev_user` int(10) unsigned NOT NULL DEFAULT '0',
  549.   `rev_user_text` varbinary(255) NOT NULL DEFAULT '',
  550.   `rev_timestamp` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  551.   `rev_minor_edit` tinyint(3) unsigned NOT NULL DEFAULT '0',
  552.   `rev_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0',
  553.   `rev_len` int(10) unsigned DEFAULT NULL,
  554.   `rev_parent_id` int(10) unsigned DEFAULT NULL,
  555.   `rev_sha1` varbinary(32) NOT NULL DEFAULT '',
  556.   PRIMARY KEY (`rev_id`),
  557.   UNIQUE KEY `rev_page_id` (`rev_page`,`rev_id`),
  558.   KEY `rev_timestamp` (`rev_timestamp`),
  559.   KEY `page_timestamp` (`rev_page`,`rev_timestamp`),
  560.   KEY `user_timestamp` (`rev_user`,`rev_timestamp`),
  561.   KEY `usertext_timestamp` (`rev_user_text`,`rev_timestamp`)
  562. ) ENGINE=InnoDB AUTO_INCREMENT=287 DEFAULT CHARSET=binary MAX_ROWS=10000000 AVG_ROW_LENGTH=1024;
  563.  
  564. -- Data exporting was unselected.
  565.  
  566. -- Dumping structure for table biowiki.searchindex
  567. CREATE TABLE IF NOT EXISTS `searchindex` (
  568.   `si_page` int(10) unsigned NOT NULL,
  569.   `si_title` varchar(255) NOT NULL DEFAULT '',
  570.   `si_text` mediumtext NOT NULL,
  571.   UNIQUE KEY `si_page` (`si_page`),
  572.   FULLTEXT KEY `si_title` (`si_title`),
  573.   FULLTEXT KEY `si_text` (`si_text`)
  574. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  575.  
  576. -- Data exporting was unselected.
  577.  
  578. -- Dumping structure for table biowiki.site_stats
  579. CREATE TABLE IF NOT EXISTS `site_stats` (
  580.   `ss_row_id` int(10) unsigned NOT NULL,
  581.   `ss_total_views` bigint(20) unsigned DEFAULT '0',
  582.   `ss_total_edits` bigint(20) unsigned DEFAULT '0',
  583.   `ss_good_articles` bigint(20) unsigned DEFAULT '0',
  584.   `ss_total_pages` bigint(20) DEFAULT '-1',
  585.   `ss_users` bigint(20) DEFAULT '-1',
  586.   `ss_active_users` bigint(20) DEFAULT '-1',
  587.   `ss_admins` int(11) DEFAULT '-1',
  588.   `ss_images` int(11) DEFAULT '0',
  589.   UNIQUE KEY `ss_row_id` (`ss_row_id`)
  590. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  591.  
  592. -- Data exporting was unselected.
  593.  
  594. -- Dumping structure for table biowiki.tag_summary
  595. CREATE TABLE IF NOT EXISTS `tag_summary` (
  596.   `ts_rc_id` int(11) DEFAULT NULL,
  597.   `ts_log_id` int(11) DEFAULT NULL,
  598.   `ts_rev_id` int(11) DEFAULT NULL,
  599.   `ts_tags` blob NOT NULL,
  600.   UNIQUE KEY `tag_summary_rc_id` (`ts_rc_id`),
  601.   UNIQUE KEY `tag_summary_log_id` (`ts_log_id`),
  602.   UNIQUE KEY `tag_summary_rev_id` (`ts_rev_id`)
  603. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  604.  
  605. -- Data exporting was unselected.
  606.  
  607. -- Dumping structure for table biowiki.templatelinks
  608. CREATE TABLE IF NOT EXISTS `templatelinks` (
  609.   `tl_from` int(10) unsigned NOT NULL DEFAULT '0',
  610.   `tl_namespace` int(11) NOT NULL DEFAULT '0',
  611.   `tl_title` varbinary(255) NOT NULL DEFAULT '',
  612.   UNIQUE KEY `tl_from` (`tl_from`,`tl_namespace`,`tl_title`),
  613.   UNIQUE KEY `tl_namespace` (`tl_namespace`,`tl_title`,`tl_from`)
  614. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  615.  
  616. -- Data exporting was unselected.
  617.  
  618. -- Dumping structure for table biowiki.text
  619. CREATE TABLE IF NOT EXISTS `text` (
  620.   `old_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  621.   `old_text` mediumblob NOT NULL,
  622.   `old_flags` tinyblob NOT NULL,
  623.   PRIMARY KEY (`old_id`)
  624. ) ENGINE=InnoDB AUTO_INCREMENT=267 DEFAULT CHARSET=binary MAX_ROWS=10000000 AVG_ROW_LENGTH=10240;
  625.  
  626. -- Data exporting was unselected.
  627.  
  628. -- Dumping structure for table biowiki.transcache
  629. CREATE TABLE IF NOT EXISTS `transcache` (
  630.   `tc_url` varbinary(255) NOT NULL,
  631.   `tc_contents` blob,
  632.   `tc_time` binary(14) NOT NULL,
  633.   UNIQUE KEY `tc_url_idx` (`tc_url`)
  634. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  635.  
  636. -- Data exporting was unselected.
  637.  
  638. -- Dumping structure for table biowiki.updatelog
  639. CREATE TABLE IF NOT EXISTS `updatelog` (
  640.   `ul_key` varbinary(255) NOT NULL,
  641.   `ul_value` blob,
  642.   PRIMARY KEY (`ul_key`)
  643. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  644.  
  645. -- Data exporting was unselected.
  646.  
  647. -- Dumping structure for table biowiki.uploadstash
  648. CREATE TABLE IF NOT EXISTS `uploadstash` (
  649.   `us_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  650.   `us_user` int(10) unsigned NOT NULL,
  651.   `us_key` varbinary(255) NOT NULL,
  652.   `us_orig_path` varbinary(255) NOT NULL,
  653.   `us_path` varbinary(255) NOT NULL,
  654.   `us_source_type` varbinary(50) DEFAULT NULL,
  655.   `us_timestamp` varbinary(14) NOT NULL,
  656.   `us_status` varbinary(50) NOT NULL,
  657.   `us_chunk_inx` int(10) unsigned DEFAULT NULL,
  658.   `us_size` int(10) unsigned NOT NULL,
  659.   `us_sha1` varbinary(31) NOT NULL,
  660.   `us_mime` varbinary(255) DEFAULT NULL,
  661.   `us_media_type` enum('UNKNOWN','BITMAP','DRAWING','AUDIO','VIDEO','MULTIMEDIA','OFFICE','TEXT','EXECUTABLE','ARCHIVE') DEFAULT NULL,
  662.   `us_image_width` int(10) unsigned DEFAULT NULL,
  663.   `us_image_height` int(10) unsigned DEFAULT NULL,
  664.   `us_image_bits` smallint(5) unsigned DEFAULT NULL,
  665.   PRIMARY KEY (`us_id`),
  666.   UNIQUE KEY `us_key` (`us_key`),
  667.   KEY `us_user` (`us_user`),
  668.   KEY `us_timestamp` (`us_timestamp`)
  669. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  670.  
  671. -- Data exporting was unselected.
  672.  
  673. -- Dumping structure for table biowiki.user
  674. CREATE TABLE IF NOT EXISTS `user` (
  675.   `user_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  676.   `user_name` varbinary(255) NOT NULL DEFAULT '',
  677.   `user_real_name` varbinary(255) NOT NULL DEFAULT '',
  678.   `user_password` tinyblob NOT NULL,
  679.   `user_newpassword` tinyblob NOT NULL,
  680.   `user_newpass_time` binary(14) DEFAULT NULL,
  681.   `user_email` tinyblob NOT NULL,
  682.   `user_touched` binary(14) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  683.   `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',
  684.   `user_email_authenticated` binary(14) DEFAULT NULL,
  685.   `user_email_token` binary(32) DEFAULT NULL,
  686.   `user_email_token_expires` binary(14) DEFAULT NULL,
  687.   `user_registration` binary(14) DEFAULT NULL,
  688.   `user_editcount` int(11) DEFAULT NULL,
  689.   PRIMARY KEY (`user_id`),
  690.   UNIQUE KEY `user_name` (`user_name`),
  691.   KEY `user_email_token` (`user_email_token`),
  692.   KEY `user_email` (`user_email`(50))
  693. ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=binary;
  694.  
  695. -- Data exporting was unselected.
  696.  
  697. -- Dumping structure for table biowiki.user_former_groups
  698. CREATE TABLE IF NOT EXISTS `user_former_groups` (
  699.   `ufg_user` int(10) unsigned NOT NULL DEFAULT '0',
  700.   `ufg_group` varbinary(32) NOT NULL DEFAULT '',
  701.   UNIQUE KEY `ufg_user_group` (`ufg_user`,`ufg_group`)
  702. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  703.  
  704. -- Data exporting was unselected.
  705.  
  706. -- Dumping structure for table biowiki.user_groups
  707. CREATE TABLE IF NOT EXISTS `user_groups` (
  708.   `ug_user` int(10) unsigned NOT NULL DEFAULT '0',
  709.   `ug_group` varbinary(32) NOT NULL DEFAULT '',
  710.   UNIQUE KEY `ug_user_group` (`ug_user`,`ug_group`),
  711.   KEY `ug_group` (`ug_group`)
  712. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  713.  
  714. -- Data exporting was unselected.
  715.  
  716. -- Dumping structure for table biowiki.user_newtalk
  717. CREATE TABLE IF NOT EXISTS `user_newtalk` (
  718.   `user_id` int(11) NOT NULL DEFAULT '0',
  719.   `user_ip` varbinary(40) NOT NULL DEFAULT '',
  720.   `user_last_timestamp` varbinary(14) DEFAULT NULL,
  721.   KEY `user_id` (`user_id`),
  722.   KEY `user_ip` (`user_ip`)
  723. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  724.  
  725. -- Data exporting was unselected.
  726.  
  727. -- Dumping structure for table biowiki.user_properties
  728. CREATE TABLE IF NOT EXISTS `user_properties` (
  729.   `up_user` int(11) NOT NULL,
  730.   `up_property` varbinary(255) NOT NULL,
  731.   `up_value` blob,
  732.   UNIQUE KEY `user_properties_user_property` (`up_user`,`up_property`),
  733.   KEY `user_properties_property` (`up_property`)
  734. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  735.  
  736. -- Data exporting was unselected.
  737.  
  738. -- Dumping structure for table biowiki.valid_tag
  739. CREATE TABLE IF NOT EXISTS `valid_tag` (
  740.   `vt_tag` varbinary(255) NOT NULL,
  741.   PRIMARY KEY (`vt_tag`)
  742. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  743.  
  744. -- Data exporting was unselected.
  745.  
  746. -- Dumping structure for table biowiki.watchlist
  747. CREATE TABLE IF NOT EXISTS `watchlist` (
  748.   `wl_user` int(10) unsigned NOT NULL,
  749.   `wl_namespace` int(11) NOT NULL DEFAULT '0',
  750.   `wl_title` varbinary(255) NOT NULL DEFAULT '',
  751.   `wl_notificationtimestamp` varbinary(14) DEFAULT NULL,
  752.   UNIQUE KEY `wl_user` (`wl_user`,`wl_namespace`,`wl_title`),
  753.   KEY `namespace_title` (`wl_namespace`,`wl_title`)
  754. ) ENGINE=InnoDB DEFAULT CHARSET=binary;
  755.  
  756. -- Data exporting was unselected.
  757.  
  758. /*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
  759. /*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
  760. /*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
  761. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  762. /*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
  763.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement