Drupal 8 Site using Vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2372 lines
6.0 MiB

  1. -- MySQL dump 10.13 Distrib 5.6.37, for Linux (x86_64)
  2. --
  3. -- Host: localhost Database: default
  4. -- ------------------------------------------------------
  5. -- Server version 5.6.37
  6. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  7. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  8. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  9. /*!40101 SET NAMES utf8 */;
  10. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  11. /*!40103 SET TIME_ZONE='+00:00' */;
  12. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  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. -- Table structure for table `batch`
  18. --
  19. DROP TABLE IF EXISTS `batch`;
  20. /*!40101 SET @saved_cs_client = @@character_set_client */;
  21. /*!40101 SET character_set_client = utf8 */;
  22. CREATE TABLE `batch` (
  23. `bid` int(10) unsigned NOT NULL COMMENT 'Primary Key: Unique batch ID.',
  24. `token` varchar(64) CHARACTER SET ascii NOT NULL COMMENT 'A string token generated against the current user''s session id and the batch id, used to ensure that only the user who submitted the batch can effectively access it.',
  25. `timestamp` int(11) NOT NULL COMMENT 'A Unix timestamp indicating when this batch was submitted for processing. Stale batches are purged at cron time.',
  26. `batch` longblob COMMENT 'A serialized array containing the processing data for the batch.',
  27. PRIMARY KEY (`bid`),
  28. KEY `token` (`token`)
  29. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Stores details about batches (processes that run in…';
  30. /*!40101 SET character_set_client = @saved_cs_client */;
  31. --
  32. -- Dumping data for table `batch`
  33. --
  34. LOCK TABLES `batch` WRITE;
  35. /*!40000 ALTER TABLE `batch` DISABLE KEYS */;
  36. /*!40000 ALTER TABLE `batch` ENABLE KEYS */;
  37. UNLOCK TABLES;
  38. --
  39. -- Table structure for table `block_content`
  40. --
  41. DROP TABLE IF EXISTS `block_content`;
  42. /*!40101 SET @saved_cs_client = @@character_set_client */;
  43. /*!40101 SET character_set_client = utf8 */;
  44. CREATE TABLE `block_content` (
  45. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  46. `revision_id` int(10) unsigned DEFAULT NULL,
  47. `type` varchar(32) CHARACTER SET ascii NOT NULL COMMENT 'The ID of the target entity.',
  48. `uuid` varchar(128) CHARACTER SET ascii NOT NULL,
  49. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  50. PRIMARY KEY (`id`),
  51. UNIQUE KEY `block_content_field__uuid__value` (`uuid`),
  52. UNIQUE KEY `block_content__revision_id` (`revision_id`),
  53. KEY `block_content_field__type__target_id` (`type`)
  54. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for block_content entities.';
  55. /*!40101 SET character_set_client = @saved_cs_client */;
  56. --
  57. -- Dumping data for table `block_content`
  58. --
  59. LOCK TABLES `block_content` WRITE;
  60. /*!40000 ALTER TABLE `block_content` DISABLE KEYS */;
  61. /*!40000 ALTER TABLE `block_content` ENABLE KEYS */;
  62. UNLOCK TABLES;
  63. --
  64. -- Table structure for table `block_content__body`
  65. --
  66. DROP TABLE IF EXISTS `block_content__body`;
  67. /*!40101 SET @saved_cs_client = @@character_set_client */;
  68. /*!40101 SET character_set_client = utf8 */;
  69. CREATE TABLE `block_content__body` (
  70. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  71. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  72. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  73. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  74. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  75. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  76. `body_value` longtext NOT NULL,
  77. `body_summary` longtext,
  78. `body_format` varchar(255) CHARACTER SET ascii DEFAULT NULL,
  79. PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`),
  80. KEY `bundle` (`bundle`),
  81. KEY `revision_id` (`revision_id`),
  82. KEY `body_format` (`body_format`)
  83. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Data storage for block_content field body.';
  84. /*!40101 SET character_set_client = @saved_cs_client */;
  85. --
  86. -- Dumping data for table `block_content__body`
  87. --
  88. LOCK TABLES `block_content__body` WRITE;
  89. /*!40000 ALTER TABLE `block_content__body` DISABLE KEYS */;
  90. /*!40000 ALTER TABLE `block_content__body` ENABLE KEYS */;
  91. UNLOCK TABLES;
  92. --
  93. -- Table structure for table `block_content_field_data`
  94. --
  95. DROP TABLE IF EXISTS `block_content_field_data`;
  96. /*!40101 SET @saved_cs_client = @@character_set_client */;
  97. /*!40101 SET character_set_client = utf8 */;
  98. CREATE TABLE `block_content_field_data` (
  99. `id` int(10) unsigned NOT NULL,
  100. `revision_id` int(10) unsigned NOT NULL,
  101. `type` varchar(32) CHARACTER SET ascii NOT NULL COMMENT 'The ID of the target entity.',
  102. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  103. `status` tinyint(4) NOT NULL,
  104. `info` varchar(255) DEFAULT NULL,
  105. `changed` int(11) DEFAULT NULL,
  106. `reusable` tinyint(4) DEFAULT NULL,
  107. `default_langcode` tinyint(4) NOT NULL,
  108. `revision_translation_affected` tinyint(4) DEFAULT NULL,
  109. PRIMARY KEY (`id`,`langcode`),
  110. KEY `block_content__id__default_langcode__langcode` (`id`,`default_langcode`,`langcode`),
  111. KEY `block_content__revision_id` (`revision_id`),
  112. KEY `block_content_field__type__target_id` (`type`),
  113. KEY `block_content__status_type` (`status`,`type`,`id`)
  114. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The data table for block_content entities.';
  115. /*!40101 SET character_set_client = @saved_cs_client */;
  116. --
  117. -- Dumping data for table `block_content_field_data`
  118. --
  119. LOCK TABLES `block_content_field_data` WRITE;
  120. /*!40000 ALTER TABLE `block_content_field_data` DISABLE KEYS */;
  121. /*!40000 ALTER TABLE `block_content_field_data` ENABLE KEYS */;
  122. UNLOCK TABLES;
  123. --
  124. -- Table structure for table `block_content_field_revision`
  125. --
  126. DROP TABLE IF EXISTS `block_content_field_revision`;
  127. /*!40101 SET @saved_cs_client = @@character_set_client */;
  128. /*!40101 SET character_set_client = utf8 */;
  129. CREATE TABLE `block_content_field_revision` (
  130. `id` int(10) unsigned NOT NULL,
  131. `revision_id` int(10) unsigned NOT NULL,
  132. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  133. `status` tinyint(4) NOT NULL,
  134. `info` varchar(255) DEFAULT NULL,
  135. `changed` int(11) DEFAULT NULL,
  136. `default_langcode` tinyint(4) NOT NULL,
  137. `revision_translation_affected` tinyint(4) DEFAULT NULL,
  138. PRIMARY KEY (`revision_id`,`langcode`),
  139. KEY `block_content__id__default_langcode__langcode` (`id`,`default_langcode`,`langcode`)
  140. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision data table for block_content entities.';
  141. /*!40101 SET character_set_client = @saved_cs_client */;
  142. --
  143. -- Dumping data for table `block_content_field_revision`
  144. --
  145. LOCK TABLES `block_content_field_revision` WRITE;
  146. /*!40000 ALTER TABLE `block_content_field_revision` DISABLE KEYS */;
  147. /*!40000 ALTER TABLE `block_content_field_revision` ENABLE KEYS */;
  148. UNLOCK TABLES;
  149. --
  150. -- Table structure for table `block_content_revision`
  151. --
  152. DROP TABLE IF EXISTS `block_content_revision`;
  153. /*!40101 SET @saved_cs_client = @@character_set_client */;
  154. /*!40101 SET character_set_client = utf8 */;
  155. CREATE TABLE `block_content_revision` (
  156. `id` int(10) unsigned NOT NULL,
  157. `revision_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  158. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  159. `revision_user` int(10) unsigned DEFAULT NULL COMMENT 'The ID of the target entity.',
  160. `revision_created` int(11) DEFAULT NULL,
  161. `revision_log` longtext,
  162. `revision_default` tinyint(4) DEFAULT NULL,
  163. PRIMARY KEY (`revision_id`),
  164. KEY `block_content__id` (`id`),
  165. KEY `block_content_field__revision_user__target_id` (`revision_user`)
  166. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision table for block_content entities.';
  167. /*!40101 SET character_set_client = @saved_cs_client */;
  168. --
  169. -- Dumping data for table `block_content_revision`
  170. --
  171. LOCK TABLES `block_content_revision` WRITE;
  172. /*!40000 ALTER TABLE `block_content_revision` DISABLE KEYS */;
  173. /*!40000 ALTER TABLE `block_content_revision` ENABLE KEYS */;
  174. UNLOCK TABLES;
  175. --
  176. -- Table structure for table `block_content_revision__body`
  177. --
  178. DROP TABLE IF EXISTS `block_content_revision__body`;
  179. /*!40101 SET @saved_cs_client = @@character_set_client */;
  180. /*!40101 SET character_set_client = utf8 */;
  181. CREATE TABLE `block_content_revision__body` (
  182. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  183. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  184. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  185. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  186. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  187. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  188. `body_value` longtext NOT NULL,
  189. `body_summary` longtext,
  190. `body_format` varchar(255) CHARACTER SET ascii DEFAULT NULL,
  191. PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`),
  192. KEY `bundle` (`bundle`),
  193. KEY `revision_id` (`revision_id`),
  194. KEY `body_format` (`body_format`)
  195. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Revision archive storage for block_content field body.';
  196. /*!40101 SET character_set_client = @saved_cs_client */;
  197. --
  198. -- Dumping data for table `block_content_revision__body`
  199. --
  200. LOCK TABLES `block_content_revision__body` WRITE;
  201. /*!40000 ALTER TABLE `block_content_revision__body` DISABLE KEYS */;
  202. /*!40000 ALTER TABLE `block_content_revision__body` ENABLE KEYS */;
  203. UNLOCK TABLES;
  204. --
  205. -- Table structure for table `cache_bootstrap`
  206. --
  207. DROP TABLE IF EXISTS `cache_bootstrap`;
  208. /*!40101 SET @saved_cs_client = @@character_set_client */;
  209. /*!40101 SET character_set_client = utf8 */;
  210. CREATE TABLE `cache_bootstrap` (
  211. `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  212. `data` longblob COMMENT 'A collection of data to cache.',
  213. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.',
  214. `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.',
  215. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  216. `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.',
  217. `checksum` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.',
  218. PRIMARY KEY (`cid`),
  219. KEY `expire` (`expire`),
  220. KEY `created` (`created`)
  221. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.';
  222. /*!40101 SET character_set_client = @saved_cs_client */;
  223. --
  224. -- Dumping data for table `cache_bootstrap`
  225. --
  226. LOCK TABLES `cache_bootstrap` WRITE;
  227. /*!40000 ALTER TABLE `cache_bootstrap` DISABLE KEYS */;
  228. INSERT INTO `cache_bootstrap` VALUES ('hook_info','a:39:{s:10:\"token_info\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:16:\"token_info_alter\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:6:\"tokens\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:12:\"tokens_alter\";a:1:{s:5:\"group\";s:6:\"tokens\";}s:10:\"views_data\";a:1:{s:5:\"group\";s:5:\"views\";}s:16:\"views_data_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:13:\"views_analyze\";a:1:{s:5:\"group\";s:5:\"views\";}s:22:\"views_invalidate_cache\";a:1:{s:5:\"group\";s:5:\"views\";}s:26:\"views_plugins_access_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:24:\"views_plugins_area_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:28:\"views_plugins_argument_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:36:\"views_plugins_argument_default_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:38:\"views_plugins_argument_validator_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:25:\"views_plugins_cache_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:36:\"views_plugins_display_extender_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:27:\"views_plugins_display_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:32:\"views_plugins_exposed_form_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:25:\"views_plugins_field_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:26:\"views_plugins_filter_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:24:\"views_plugins_join_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:25:\"views_plugins_pager_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:25:\"views_plugins_query_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:32:\"views_plugins_relationship_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:23:\"views_plugins_row_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:24:\"views_plugins_sort_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:25:\"views_plugins_style_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:26:\"views_plugins_wizard_alter\";a:1:{s:5:\"group\";s:5:\"views\";}s:25:\"views_query_substitutions\";a:1:{s:5:\"group\";s:15:\"views_execution\";}s:24:\"views_form_substitutions\";a:1:{s:5:\"group\";s:15:\"views_execution\";}s:14:\"views_pre_view\";a:1:{s:5:\"group\";s:15:\"views_execution\";}s:15:\"views_pre_build\";a:1:{s:5:\"group\";s:15:\"views_execution\";}s:16:\"views_post_build\";a:1:{s:5:\"group\";s:15:\"views_execution\";}s:17:\"views_pre_execute\";a:1:{s:5:\"group\";s:15:\"views_execution\";}s:18:\"views_post_execute\";a:1:{s:5:\"group\";s:15:\"views_execution\";}s:16:\"views_pre_render\";a:1:{s:5:\"group\";s:15:\"views_execution\";}s:17:\"views_post_render\";a:1:{s:5:\"group\";s:15:\"views_execution\";}s:17:\"views_query_alter\";a:1:{s:5:\"group\";s:15:\"views_execution\";}s:16:\"field_views_data\";a:1:{s:5:\"group\";s:5:\"views\";}s:22:\"field_views_data_alter\";a:1:{s:5:\"group\";s:5:\"views\";}}',-1,1576041661.898,1,'','0'),('module_implements','a:219:{s:23:\"module_implements_alter\";a:0:{}s:17:\"system_info_alter\";a:1:{s:6:\"system\";b:0;}s:24:\"system_themes_page_alter\";a:0:{}s:20:\"element_plugin_alter\";a:0:{}s:11:\"entity_load\";a:0:{}s:16:\"date_format_load\";a:0:{}s:18:\"element_info_alter\";a:3:{s:6:\"editor\";b:0;s:6:\"system\";b:0;s:4:\"user\";b:0;}s:10:\"form_alter\";a:1:{s:6:\"system\";b:0;}s:35:\"form_system_themes_admin_form_alter\";a:1:{s:4:\"node\";b:0;}s:5:\"theme\";a:21:{s:5:\"block\";b:0;s:13:\"block_content\";b:0;s:8:\"ckeditor\";b:0;s:5:\"color\";b:0;s:7:\"comment\";b:0;s:8:\"field_ui\";b:0;s:4:\"file\";b:0;s:6:\"filter\";b:0;s:4:\"help\";b:0;s:5:\"image\";b:0;s:4:\"link\";b:0;s:4:\"node\";b:0;s:3:\"rdf\";b:0;s:6:\"search\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:7:\"toolbar\";b:0;s:6:\"update\";b:0;s:4:\"user\";b:0;s:8:\"views_ui\";b:0;s:5:\"views\";b:0;}s:25:\"views_plugins_pager_alter\";a:0:{}s:32:\"views_plugins_exposed_form_alter\";a:0:{}s:20:\"theme_registry_alter\";a:0:{}s:36:\"theme_suggestions_system_themes_page\";a:0:{}s:23:\"theme_suggestions_alter\";a:0:{}s:42:\"theme_suggestions_system_themes_page_alter\";a:0:{}s:43:\"template_preprocess_default_variables_alter\";a:1:{s:4:\"user\";b:0;}s:23:\"theme_suggestions_image\";a:0:{}s:29:\"theme_suggestions_image_alter\";a:0:{}s:14:\"file_url_a
  229. /*!40000 ALTER TABLE `cache_bootstrap` ENABLE KEYS */;
  230. UNLOCK TABLES;
  231. --
  232. -- Table structure for table `cache_config`
  233. --
  234. DROP TABLE IF EXISTS `cache_config`;
  235. /*!40101 SET @saved_cs_client = @@character_set_client */;
  236. /*!40101 SET character_set_client = utf8 */;
  237. CREATE TABLE `cache_config` (
  238. `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  239. `data` longblob COMMENT 'A collection of data to cache.',
  240. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.',
  241. `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.',
  242. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  243. `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.',
  244. `checksum` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.',
  245. PRIMARY KEY (`cid`),
  246. KEY `expire` (`expire`),
  247. KEY `created` (`created`)
  248. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.';
  249. /*!40101 SET character_set_client = @saved_cs_client */;
  250. --
  251. -- Dumping data for table `cache_config`
  252. --
  253. LOCK TABLES `cache_config` WRITE;
  254. /*!40000 ALTER TABLE `cache_config` DISABLE KEYS */;
  255. INSERT INTO `cache_config` VALUES ('automated_cron.settings','a:2:{s:8:\"interval\";i:10800;s:5:\"_core\";a:1:{s:19:\"default_config_hash\";s:43:\"fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs\";}}',-1,1576041675.301,1,'','0'),('block.block.bartik_account_menu','a:13:{s:4:\"uuid\";s:36:\"a55019e7-f1fa-4fea-b196-94831c453e1d\";s:8:\"langcode\";s:2:\"en\";s:6:\"status\";b:1;s:12:\"dependencies\";a:3:{s:6:\"config\";a:1:{i:0;s:19:\"system.menu.account\";}s:6:\"module\";a:1:{i:0;s:6:\"system\";}s:5:\"theme\";a:1:{i:0;s:6:\"bartik\";}}s:5:\"_core\";a:1:{s:19:\"default_config_hash\";s:43:\"8a31Ywc1t2zlddGd3bmDrFMefWqgSK2E02ceFdr-bfc\";}s:2:\"id\";s:19:\"bartik_account_menu\";s:5:\"theme\";s:6:\"bartik\";s:6:\"region\";s:14:\"secondary_menu\";s:6:\"weight\";i:0;s:8:\"provider\";N;s:6:\"plugin\";s:25:\"system_menu_block:account\";s:8:\"settings\";a:7:{s:2:\"id\";s:25:\"system_menu_block:account\";s:5:\"label\";s:17:\"User account menu\";s:8:\"provider\";s:6:\"system\";s:13:\"label_display\";s:1:\"0\";s:5:\"level\";i:1;s:5:\"depth\";i:1;s:16:\"expand_all_items\";b:0;}s:10:\"visibility\";a:0:{}}',-1,1576041661.972,1,'','0'),('block.block.bartik_branding','a:13:{s:4:\"uuid\";s:36:\"5bd69467-8b67-4647-bd97-5adf7146df99\";s:8:\"langcode\";s:2:\"en\";s:6:\"status\";b:1;s:12:\"dependencies\";a:2:{s:6:\"module\";a:1:{i:0;s:6:\"system\";}s:5:\"theme\";a:1:{i:0;s:6:\"bartik\";}}s:5:\"_core\";a:1:{s:19:\"default_config_hash\";s:43:\"NDwadleLD3YVSbDUaakxyYZyINYtkFtOVGShfq4kWy8\";}s:2:\"id\";s:15:\"bartik_branding\";s:5:\"theme\";s:6:\"bartik\";s:6:\"region\";s:6:\"header\";s:6:\"weight\";i:0;s:8:\"provider\";N;s:6:\"plugin\";s:21:\"system_branding_block\";s:8:\"settings\";a:7:{s:2:\"id\";s:21:\"system_branding_block\";s:5:\"label\";s:13:\"Site branding\";s:8:\"provider\";s:6:\"system\";s:13:\"label_display\";s:1:\"0\";s:13:\"use_site_logo\";b:1;s:13:\"use_site_name\";b:1;s:15:\"use_site_slogan\";b:1;}s:10:\"visibility\";a:0:{}}',-1,1576041661.972,1,'','0'),('block.block.bartik_breadcrumbs','a:13:{s:4:\"uuid\";s:36:\"f5e81474-0524-4463-8366-259341c7e4ee\";s:8:\"langcode\";s:2:\"en\";s:6:\"status\";b:1;s:12:\"dependencies\";a:2:{s:6:\"module\";a:1:{i:0;s:6:\"system\";}s:5:\"theme\";a:1:{i:0;s:6:\"bartik\";}}s:5:\"_core\";a:1:{s:19:\"default_config_hash\";s:43:\"oXUb3JZR2WW5VOdw4HrhRicCsq51mCgLfRyvheG68ck\";}s:2:\"id\";s:18:\"bartik_breadcrumbs\";s:5:\"theme\";s:6:\"bartik\";s:6:\"region\";s:10:\"breadcrumb\";s:6:\"weight\";i:0;s:8:\"provider\";N;s:6:\"plugin\";s:23:\"system_breadcrumb_block\";s:8:\"settings\";a:4:{s:2:\"id\";s:23:\"system_breadcrumb_block\";s:5:\"label\";s:11:\"Breadcrumbs\";s:8:\"provider\";s:6:\"system\";s:13:\"label_display\";s:1:\"0\";}s:10:\"visibility\";a:0:{}}',-1,1576041661.972,1,'','0'),('block.block.bartik_content','a:13:{s:4:\"uuid\";s:36:\"808e8129-19d2-471f-baf1-92e4d017aa59\";s:8:\"langcode\";s:2:\"en\";s:6:\"status\";b:1;s:12:\"dependencies\";a:2:{s:6:\"module\";a:1:{i:0;s:6:\"system\";}s:5:\"theme\";a:1:{i:0;s:6:\"bartik\";}}s:5:\"_core\";a:1:{s:19:\"default_config_hash\";s:43:\"9EoWV2Lot6FVSr50t4hoKgiz1LIXYWNG-IIPYsWxBqo\";}s:2:\"id\";s:14:\"bartik_content\";s:5:\"theme\";s:6:\"bartik\";s:6:\"region\";s:7:\"content\";s:6:\"weight\";i:0;s:8:\"provider\";N;s:6:\"plugin\";s:17:\"system_main_block\";s:8:\"settings\";a:4:{s:2:\"id\";s:17:\"system_main_block\";s:5:\"label\";s:17:\"Main page content\";s:8:\"provider\";s:6:\"system\";s:13:\"label_display\";s:1:\"0\";}s:10:\"visibility\";a:0:{}}',-1,1576041661.971,1,'','0'),('block.block.bartik_footer','a:13:{s:4:\"uuid\";s:36:\"2be449b4-ec78-4d82-ba39-6bcebb4b96ec\";s:8:\"langcode\";s:2:\"en\";s:6:\"status\";b:1;s:12:\"dependencies\";a:3:{s:6:\"config\";a:1:{i:0;s:18:\"system.menu.footer\";}s:6:\"module\";a:1:{i:0;s:6:\"system\";}s:5:\"theme\";a:1:{i:0;s:6:\"bartik\";}}s:5:\"_core\";a:1:{s:19:\"default_config_hash\";s:43:\"8zRjTNbfNAJ94lQpZDu6MkyD87GYJ2zpH9VQPVmRbcM\";}s:2:\"id\";s:13:\"bartik_footer\";s:5:\"theme\";s:6:\"bartik\";s:6:\"region\";s:12:\"footer_fifth\";s:6:\"weight\";i:0;s:8:\"provider\";N;s:6:\"plugin\";s:24:\"system_menu_block:footer\";s:8:\"settings\
  256. /*!40000 ALTER TABLE `cache_config` ENABLE KEYS */;
  257. UNLOCK TABLES;
  258. --
  259. -- Table structure for table `cache_container`
  260. --
  261. DROP TABLE IF EXISTS `cache_container`;
  262. /*!40101 SET @saved_cs_client = @@character_set_client */;
  263. /*!40101 SET character_set_client = utf8 */;
  264. CREATE TABLE `cache_container` (
  265. `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  266. `data` longblob COMMENT 'A collection of data to cache.',
  267. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.',
  268. `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.',
  269. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  270. `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.',
  271. `checksum` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.',
  272. PRIMARY KEY (`cid`),
  273. KEY `expire` (`expire`),
  274. KEY `created` (`created`)
  275. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.';
  276. /*!40101 SET character_set_client = @saved_cs_client */;
  277. --
  278. -- Dumping data for table `cache_container`
  279. --
  280. LOCK TABLES `cache_container` WRITE;
  281. /*!40000 ALTER TABLE `cache_container` DISABLE KEYS */;
  282. INSERT INTO `cache_container` VALUES ('service_container:prod:8.8.0::Linux:a:1:{i:0;s:43:\"/var/www/docroot/sites/default/services.yml\";}','a:5:{s:7:\"aliases\";a:6:{s:32:\"Psr\\Container\\ContainerInterface\";s:17:\"service_container\";s:56:\"Symfony\\Component\\DependencyInjection\\ContainerInterface\";s:17:\"service_container\";s:19:\"config.storage.sync\";s:22:\"config.storage.staging\";s:20:\"path.alias_whitelist\";s:20:\"path_alias.whitelist\";s:15:\"session_handler\";s:26:\"session_handler.write_safe\";s:12:\"element_info\";s:27:\"plugin.manager.element_info\";}s:10:\"parameters\";a:22:{s:18:\"kernel.environment\";s:4:\"prod\";s:17:\"container.modules\";a:46:{s:14:\"automated_cron\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:51:\"core/modules/automated_cron/automated_cron.info.yml\";s:8:\"filename\";s:21:\"automated_cron.module\";}s:8:\"big_pipe\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:39:\"core/modules/big_pipe/big_pipe.info.yml\";s:8:\"filename\";s:15:\"big_pipe.module\";}s:5:\"block\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:33:\"core/modules/block/block.info.yml\";s:8:\"filename\";s:12:\"block.module\";}s:13:\"block_content\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:49:\"core/modules/block_content/block_content.info.yml\";s:8:\"filename\";s:20:\"block_content.module\";}s:10:\"breakpoint\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:43:\"core/modules/breakpoint/breakpoint.info.yml\";s:8:\"filename\";s:17:\"breakpoint.module\";}s:8:\"ckeditor\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:39:\"core/modules/ckeditor/ckeditor.info.yml\";s:8:\"filename\";s:15:\"ckeditor.module\";}s:5:\"color\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:33:\"core/modules/color/color.info.yml\";s:8:\"filename\";s:12:\"color.module\";}s:7:\"comment\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:37:\"core/modules/comment/comment.info.yml\";s:8:\"filename\";s:14:\"comment.module\";}s:10:\"components\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:46:\"modules/contrib/components/components.info.yml\";s:8:\"filename\";N;}s:6:\"config\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:35:\"core/modules/config/config.info.yml\";s:8:\"filename\";s:13:\"config.module\";}s:7:\"contact\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:37:\"core/modules/contact/contact.info.yml\";s:8:\"filename\";s:14:\"contact.module\";}s:10:\"contextual\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:43:\"core/modules/contextual/contextual.info.yml\";s:8:\"filename\";s:17:\"contextual.module\";}s:8:\"datetime\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:39:\"core/modules/datetime/datetime.info.yml\";s:8:\"filename\";s:15:\"datetime.module\";}s:5:\"dblog\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:33:\"core/modules/dblog/dblog.info.yml\";s:8:\"filename\";s:12:\"dblog.module\";}s:18:\"dynamic_page_cache\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:59:\"core/modules/dynamic_page_cache/dynamic_page_cache.info.yml\";s:8:\"filename\";s:25:\"dynamic_page_cache.module\";}s:6:\"editor\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:35:\"core/modules/editor/editor.info.yml\";s:8:\"filename\";s:13:\"editor.module\";}s:5:\"field\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:33:\"core/modules/field/field.info.yml\";s:8:\"filename\";s:12:\"field.module\";}s:8:\"field_ui\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:39:\"core/modules/field_ui/field_ui.info.yml\";s:8:\"filename\";s:15:\"field_ui.module\";}s:4:\"file\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:31:\"core/modules/file/file.info.yml\";s:8:\"filename\";s:11:\"file.module\";}s:6:\"filter\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:35:\"core/modules/filter/filter.info.yml\";s:8:\"filename\";s:13:\"filter.module\";}s:4:\"help\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:31:\"core/modules/help/help.info.yml\";s:8:\"filename\";s:11:\"help.module\";}s:7:\"history\";a:3:{s:4:\"type\";s:6:\"module\";s:8:\"pathname\";s:37:\"core/modules/history/histor
  283. /*!40000 ALTER TABLE `cache_container` ENABLE KEYS */;
  284. UNLOCK TABLES;
  285. --
  286. -- Table structure for table `cache_data`
  287. --
  288. DROP TABLE IF EXISTS `cache_data`;
  289. /*!40101 SET @saved_cs_client = @@character_set_client */;
  290. /*!40101 SET character_set_client = utf8 */;
  291. CREATE TABLE `cache_data` (
  292. `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  293. `data` longblob COMMENT 'A collection of data to cache.',
  294. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.',
  295. `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.',
  296. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  297. `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.',
  298. `checksum` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.',
  299. PRIMARY KEY (`cid`),
  300. KEY `expire` (`expire`),
  301. KEY `created` (`created`)
  302. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.';
  303. /*!40101 SET character_set_client = @saved_cs_client */;
  304. --
  305. -- Dumping data for table `cache_data`
  306. --
  307. LOCK TABLES `cache_data` WRITE;
  308. /*!40000 ALTER TABLE `cache_data` DISABLE KEYS */;
  309. INSERT INTO `cache_data` VALUES ('css:claro:-tasN6tgVjzMHhSCMsD7yl2r4CxJQy_0pULsrKQ1iQA0','a:0:{}',-1,1576041675.017,1,'library_info','0'),('css:claro:0CDdDjVWlH5_YUjv3TFXVC_wyrXn8Ne3BTnCdCnQoIA0','a:111:{s:46:\"core/assets/vendor/normalize-css/normalize.css\";a:8:{s:6:\"weight\";d:-219.952;s:5:\"group\";i:0;s:4:\"type\";s:4:\"file\";s:4:\"data\";s:46:\"core/assets/vendor/normalize-css/normalize.css\";s:7:\"version\";s:5:\"3.0.3\";s:5:\"media\";s:3:\"all\";s:10:\"preprocess\";b:1;s:8:\"browsers\";a:2:{s:2:\"IE\";b:1;s:3:\"!IE\";b:1;}}s:29:\"core/misc/normalize-fixes.css\";a:8:{s:6:\"weight\";d:-218.951;s:5:\"group\";i:0;s:4:\"type\";s:4:\"file\";s:4:\"data\";s:29:\"core/misc/normalize-fixes.css\";s:7:\"version\";s:5:\"3.0.3\";s:5:\"media\";s:3:\"all\";s:10:\"preprocess\";b:1;s:8:\"browsers\";a:2:{s:2:\"IE\";b:1;s:3:\"!IE\";b:1;}}s:57:\"core/themes/stable/css/system/components/align.module.css\";a:8:{s:6:\"weight\";d:-9.996;s:5:\"group\";i:0;s:4:\"type\";s:4:\"file\";s:4:\"data\";s:57:\"core/themes/stable/css/system/components/align.module.css\";s:7:\"version\";s:5:\"8.8.0\";s:5:\"media\";s:3:\"all\";s:10:\"preprocess\";b:1;s:8:\"browsers\";a:2:{s:2:\"IE\";b:1;s:3:\"!IE\";b:1;}}s:62:\"core/themes/stable/css/system/components/fieldgroup.module.css\";a:8:{s:6:\"weight\";d:-9.995;s:5:\"group\";i:0;s:4:\"type\";s:4:\"file\";s:4:\"data\";s:62:\"core/themes/stable/css/system/components/fieldgroup.module.css\";s:7:\"version\";s:5:\"8.8.0\";s:5:\"media\";s:3:\"all\";s:10:\"preprocess\";b:1;s:8:\"browsers\";a:2:{s:2:\"IE\";b:1;s:3:\"!IE\";b:1;}}s:68:\"core/themes/stable/css/system/components/container-inline.module.css\";a:8:{s:6:\"weight\";d:-9.994;s:5:\"group\";i:0;s:4:\"type\";s:4:\"file\";s:4:\"data\";s:68:\"core/themes/stable/css/system/components/container-inline.module.css\";s:7:\"version\";s:5:\"8.8.0\";s:5:\"media\";s:3:\"all\";s:10:\"preprocess\";b:1;s:8:\"browsers\";a:2:{s:2:\"IE\";b:1;s:3:\"!IE\";b:1;}}s:60:\"core/themes/stable/css/system/components/clearfix.module.css\";a:8:{s:6:\"weight\";d:-9.993;s:5:\"group\";i:0;s:4:\"type\";s:4:\"file\";s:4:\"data\";s:60:\"core/themes/stable/css/system/components/clearfix.module.css\";s:7:\"version\";s:5:\"8.8.0\";s:5:\"media\";s:3:\"all\";s:10:\"preprocess\";b:1;s:8:\"browsers\";a:2:{s:2:\"IE\";b:1;s:3:\"!IE\";b:1;}}s:59:\"core/themes/stable/css/system/components/details.module.css\";a:8:{s:6:\"weight\";d:-9.992;s:5:\"group\";i:0;s:4:\"type\";s:4:\"file\";s:4:\"data\";s:59:\"core/themes/stable/css/system/components/details.module.css\";s:7:\"version\";s:5:\"8.8.0\";s:5:\"media\";s:3:\"all\";s:10:\"preprocess\";b:1;s:8:\"browsers\";a:2:{s:2:\"IE\";b:1;s:3:\"!IE\";b:1;}}s:58:\"core/themes/stable/css/system/components/hidden.module.css\";a:8:{s:6:\"weight\";d:-9.991;s:5:\"group\";i:0;s:4:\"type\";s:4:\"file\";s:4:\"data\";s:58:\"core/themes/stable/css/system/components/hidden.module.css\";s:7:\"version\";s:5:\"8.8.0\";s:5:\"media\";s:3:\"all\";s:10:\"preprocess\";b:1;s:8:\"browsers\";a:2:{s:2:\"IE\";b:1;s:3:\"!IE\";b:1;}}s:61:\"core/themes/stable/css/system/components/item-list.module.css\";a:8:{s:6:\"weight\";d:-9.99;s:5:\"group\";i:0;s:4:\"type\";s:4:\"file\";s:4:\"data\";s:61:\"core/themes/stable/css/system/components/item-list.module.css\";s:7:\"version\";s:5:\"8.8.0\";s:5:\"media\";s:3:\"all\";s:10:\"preprocess\";b:1;s:8:\"browsers\";a:2:{s:2:\"IE\";b:1;s:3:\"!IE\";b:1;}}s:54:\"core/themes/stable/css/system/components/js.module.css\";a:8:{s:6:\"weight\";d:-9.989;s:5:\"group\";i:0;s:4:\"type\";s:4:\"file\";s:4:\"data\";s:54:\"core/themes/stable/css/system/components/js.module.css\";s:7:\"version\";s:5:\"8.8.0\";s:5:\"media\";s:3:\"all\";s:10:\"preprocess\";b:1;s:8:\"browsers\";a:2:{s:2:\"IE\";b:1;s:3:\"!IE\";b:1;}}s:58:\"core/themes/stable/css/system/components/nowrap.module.css\";a:8:{s:6:\"weight\";d:-9.988;s:5:\"group\";i:0;s:4:\"type\";s:4:\"file\";s:4:\"data\";s:58:\"core/themes/stable/css/system/components/nowrap.module.css\";s:7:\"version\";s:5:\"8.8.0\";s:5:\"media\";s:3:\"all\";s:10:\"preprocess\";b:1;s:8:\"browsers\";a:2:{s:2:\"IE\";b:1;s:3:\"!IE\";b:1;}}s:70:\"core/
  310. INSERT INTO `cache_data` VALUES ('views:unpack_options:752a0f382739a23bb80aa431df36c4c4e8934a862edfd26b514c3347a3fc1cec:en','a:33:{s:5:\"title\";s:5:\"Files\";s:7:\"enabled\";b:1;s:15:\"display_comment\";s:0:\"\";s:9:\"css_class\";s:0:\"\";s:19:\"display_description\";s:0:\"\";s:8:\"use_ajax\";b:0;s:23:\"hide_attachment_summary\";b:0;s:16:\"show_admin_links\";b:1;s:8:\"use_more\";b:0;s:15:\"use_more_always\";b:1;s:13:\"use_more_text\";s:4:\"more\";s:12:\"link_display\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:8:\"group_by\";b:1;s:18:\"rendering_language\";s:33:\"***LANGUAGE_entity_translation***\";s:6:\"access\";a:2:{s:4:\"type\";s:4:\"perm\";s:7:\"options\";a:1:{s:4:\"perm\";s:21:\"access files overview\";}}s:5:\"cache\";a:2:{s:4:\"type\";s:3:\"tag\";s:7:\"options\";a:0:{}}s:5:\"query\";a:2:{s:4:\"type\";s:11:\"views_query\";s:7:\"options\";a:5:{s:19:\"disable_sql_rewrite\";b:0;s:8:\"distinct\";b:0;s:7:\"replica\";b:0;s:13:\"query_comment\";s:0:\"\";s:10:\"query_tags\";a:0:{}}}s:12:\"exposed_form\";a:2:{s:4:\"type\";s:5:\"basic\";s:7:\"options\";a:7:{s:13:\"submit_button\";s:6:\"Filter\";s:12:\"reset_button\";b:0;s:18:\"reset_button_label\";s:5:\"Reset\";s:19:\"exposed_sorts_label\";s:7:\"Sort by\";s:17:\"expose_sort_order\";b:1;s:14:\"sort_asc_label\";s:3:\"Asc\";s:15:\"sort_desc_label\";s:4:\"Desc\";}}s:5:\"pager\";a:2:{s:4:\"type\";s:4:\"mini\";s:7:\"options\";a:6:{s:14:\"items_per_page\";i:50;s:6:\"offset\";i:0;s:2:\"id\";i:0;s:11:\"total_pages\";i:0;s:4:\"tags\";a:2:{s:8:\"previous\";s:12:\"‹ Previous\";s:4:\"next\";s:8:\"Next ›\";}s:6:\"expose\";a:7:{s:14:\"items_per_page\";b:0;s:20:\"items_per_page_label\";s:14:\"Items per page\";s:22:\"items_per_page_options\";s:13:\"5, 10, 25, 50\";s:26:\"items_per_page_options_all\";b:0;s:32:\"items_per_page_options_all_label\";s:7:\"- All -\";s:6:\"offset\";b:0;s:12:\"offset_label\";s:6:\"Offset\";}}}s:5:\"style\";a:2:{s:4:\"type\";s:5:\"table\";s:7:\"options\";a:12:{s:8:\"grouping\";a:0:{}s:9:\"row_class\";s:0:\"\";s:17:\"default_row_class\";b:1;s:8:\"override\";b:1;s:6:\"sticky\";b:0;s:7:\"caption\";s:0:\"\";s:7:\"summary\";s:0:\"\";s:11:\"description\";s:0:\"\";s:7:\"columns\";a:8:{s:3:\"fid\";s:3:\"fid\";s:8:\"filename\";s:8:\"filename\";s:8:\"filemime\";s:8:\"filemime\";s:8:\"filesize\";s:8:\"filesize\";s:6:\"status\";s:6:\"status\";s:7:\"created\";s:7:\"created\";s:7:\"changed\";s:7:\"changed\";s:5:\"count\";s:5:\"count\";}s:4:\"info\";a:8:{s:3:\"fid\";a:6:{s:8:\"sortable\";b:0;s:18:\"default_sort_order\";s:3:\"asc\";s:5:\"align\";s:0:\"\";s:9:\"separator\";s:0:\"\";s:12:\"empty_column\";b:0;s:10:\"responsive\";s:0:\"\";}s:8:\"filename\";a:6:{s:8:\"sortable\";b:1;s:18:\"default_sort_order\";s:3:\"asc\";s:5:\"align\";s:0:\"\";s:9:\"separator\";s:0:\"\";s:12:\"empty_column\";b:0;s:10:\"responsive\";s:0:\"\";}s:8:\"filemime\";a:6:{s:8:\"sortable\";b:1;s:18:\"default_sort_order\";s:3:\"asc\";s:5:\"align\";s:0:\"\";s:9:\"separator\";s:0:\"\";s:12:\"empty_column\";b:0;s:10:\"responsive\";s:15:\"priority-medium\";}s:8:\"filesize\";a:6:{s:8:\"sortable\";b:1;s:18:\"default_sort_order\";s:3:\"asc\";s:5:\"align\";s:0:\"\";s:9:\"separator\";s:0:\"\";s:12:\"empty_column\";b:0;s:10:\"responsive\";s:12:\"priority-low\";}s:6:\"status\";a:6:{s:8:\"sortable\";b:0;s:18:\"default_sort_order\";s:3:\"asc\";s:5:\"align\";s:0:\"\";s:9:\"separator\";s:0:\"\";s:12:\"empty_column\";b:0;s:10:\"responsive\";s:12:\"priority-low\";}s:7:\"created\";a:6:{s:8:\"sortable\";b:1;s:18:\"default_sort_order\";s:4:\"desc\";s:5:\"align\";s:0:\"\";s:9:\"separator\";s:0:\"\";s:12:\"empty_column\";b:0;s:10:\"responsive\";s:0:\"\";}s:7:\"changed\";a:6:{s:8:\"sortable\";b:1;s:18:\"default_sort_order\";s:4:\"desc\";s:5:\"align\";s:0:\"\";s:9:\"separator\";s:0:\"\";s:12:\"empty_column\";b:0;s:10:\"responsive\";s:0:\"\";}s:5:\"count\";a:6:{s:8:\"sortable\";b:0;s:18:\"default_sort_order\";s:3:\"asc\";s:5:\"align\";s:0:\"\";s:9:\"separator\";s:0:\"\";s:12:\"empty_column\";b:0;s:10:\"responsive\";s:15:\"priority-medium\";}}s:7:\"default\";s:7:\"changed\";s:11:\"empty_table\";b:1;}}s:3:\"row\";a:2:{s:4:\"type\";s:6:\"fiel
  311. /*!40000 ALTER TABLE `cache_data` ENABLE KEYS */;
  312. UNLOCK TABLES;
  313. --
  314. -- Table structure for table `cache_default`
  315. --
  316. DROP TABLE IF EXISTS `cache_default`;
  317. /*!40101 SET @saved_cs_client = @@character_set_client */;
  318. /*!40101 SET character_set_client = utf8 */;
  319. CREATE TABLE `cache_default` (
  320. `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  321. `data` longblob COMMENT 'A collection of data to cache.',
  322. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.',
  323. `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.',
  324. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  325. `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.',
  326. `checksum` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.',
  327. PRIMARY KEY (`cid`),
  328. KEY `expire` (`expire`),
  329. KEY `created` (`created`)
  330. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.';
  331. /*!40101 SET character_set_client = @saved_cs_client */;
  332. --
  333. -- Dumping data for table `cache_default`
  334. --
  335. LOCK TABLES `cache_default` WRITE;
  336. /*!40000 ALTER TABLE `cache_default` DISABLE KEYS */;
  337. INSERT INTO `cache_default` VALUES ('core.extension.list.module','a:189:{s:6:\"action\";O:31:\"Drupal\\Core\\Extension\\Extension\":12:{s:7:\"\0*\0type\";s:6:\"module\";s:11:\"\0*\0pathname\";s:35:\"core/modules/action/action.info.yml\";s:11:\"\0*\0filename\";s:13:\"action.module\";s:7:\"subpath\";s:14:\"modules/action\";s:6:\"origin\";s:4:\"core\";s:4:\"info\";a:11:{s:4:\"name\";s:7:\"Actions\";s:4:\"type\";s:6:\"module\";s:11:\"description\";s:61:\"Perform tasks on specific events triggered within the system.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:5:\"8.8.0\";s:4:\"core\";s:3:\"8.x\";s:9:\"configure\";s:24:\"entity.action.collection\";s:17:\"core_incompatible\";b:0;s:5:\"mtime\";i:1575449058;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"7.0.8\";}s:6:\"weight\";i:0;s:6:\"status\";i:0;s:14:\"schema_version\";i:-1;s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:10:\"aggregator\";O:31:\"Drupal\\Core\\Extension\\Extension\":12:{s:7:\"\0*\0type\";s:6:\"module\";s:11:\"\0*\0pathname\";s:43:\"core/modules/aggregator/aggregator.info.yml\";s:11:\"\0*\0filename\";s:17:\"aggregator.module\";s:7:\"subpath\";s:18:\"modules/aggregator\";s:6:\"origin\";s:4:\"core\";s:4:\"info\";a:11:{s:4:\"name\";s:10:\"Aggregator\";s:4:\"type\";s:6:\"module\";s:11:\"description\";s:79:\"Aggregates syndicated content (RSS, RDF, and Atom feeds) from external sources.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:5:\"8.8.0\";s:4:\"core\";s:3:\"8.x\";s:9:\"configure\";s:25:\"aggregator.admin_settings\";s:12:\"dependencies\";a:2:{i:0;s:11:\"drupal:file\";i:1;s:14:\"drupal:options\";}s:17:\"core_incompatible\";b:0;s:5:\"mtime\";i:1575449058;s:3:\"php\";s:5:\"7.0.8\";}s:6:\"weight\";i:0;s:6:\"status\";i:0;s:14:\"schema_version\";i:-1;s:11:\"required_by\";a:0:{}s:8:\"requires\";a:7:{s:4:\"file\";O:32:\"Drupal\\Core\\Extension\\Dependency\":3:{s:7:\"\0*\0name\";s:4:\"file\";s:10:\"\0*\0project\";s:6:\"drupal\";s:19:\"\0*\0constraintString\";s:0:\"\";}s:5:\"field\";O:32:\"Drupal\\Core\\Extension\\Dependency\":3:{s:7:\"\0*\0name\";s:5:\"field\";s:10:\"\0*\0project\";s:6:\"drupal\";s:19:\"\0*\0constraintString\";s:0:\"\";}s:7:\"options\";O:32:\"Drupal\\Core\\Extension\\Dependency\":3:{s:7:\"\0*\0name\";s:7:\"options\";s:10:\"\0*\0project\";s:6:\"drupal\";s:19:\"\0*\0constraintString\";s:0:\"\";}s:4:\"text\";O:32:\"Drupal\\Core\\Extension\\Dependency\":3:{s:7:\"\0*\0name\";s:4:\"text\";s:10:\"\0*\0project\";s:6:\"drupal\";s:19:\"\0*\0constraintString\";s:0:\"\";}s:6:\"filter\";O:32:\"Drupal\\Core\\Extension\\Dependency\":3:{s:7:\"\0*\0name\";s:6:\"filter\";s:10:\"\0*\0project\";s:6:\"drupal\";s:19:\"\0*\0constraintString\";s:0:\"\";}s:4:\"user\";O:32:\"Drupal\\Core\\Extension\\Dependency\":3:{s:7:\"\0*\0name\";s:4:\"user\";s:10:\"\0*\0project\";s:6:\"drupal\";s:19:\"\0*\0constraintString\";s:0:\"\";}s:6:\"system\";O:32:\"Drupal\\Core\\Extension\\Dependency\":3:{s:7:\"\0*\0name\";s:6:\"system\";s:10:\"\0*\0project\";s:6:\"drupal\";s:19:\"\0*\0constraintString\";s:0:\"\";}}s:4:\"sort\";i:-7;}s:14:\"automated_cron\";O:31:\"Drupal\\Core\\Extension\\Extension\":12:{s:7:\"\0*\0type\";s:6:\"module\";s:11:\"\0*\0pathname\";s:51:\"core/modules/automated_cron/automated_cron.info.yml\";s:11:\"\0*\0filename\";s:21:\"automated_cron.module\";s:7:\"subpath\";s:22:\"modules/automated_cron\";s:6:\"origin\";s:4:\"core\";s:4:\"info\";a:11:{s:4:\"name\";s:14:\"Automated Cron\";s:4:\"type\";s:6:\"module\";s:11:\"description\";s:94:\"Provides an automated way to run cron jobs, by executing them at the end of a server response.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:5:\"8.8.0\";s:4:\"core\";s:3:\"8.x\";s:9:\"configure\";s:20:\"system.cron_settings\";s:17:\"core_incompatible\";b:0;s:5:\"mtime\";i:1575449058;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"7.0.8\";}s:6:\"weight\";i:0;s:6:\"status\";i:1;s:14:\"schema_version\";i:-1;s:11:\"required_by\";a:0:{}s:8:\"requires\";a:0:{}s:4:\"sort\";i:0;}s:3:\"ban\";O:31:\"Drupal\\Core\\Extension\\Extension\":12:{s:7:\"\0*\0type\";s:6:\"module\";s:11:\"\0*\0pathname\";s:29:\"core/modules/ban/ban.info.y
  338. INSERT INTO `cache_default` VALUES ('views_data:users:en','a:11:{s:14:\"user_bulk_form\";a:3:{s:5:\"title\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:11:\"Bulk update\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:4:\"help\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:66:\"Add a form element that lets you run operations on multiple users.\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:5:\"field\";a:1:{s:2:\"id\";s:14:\"user_bulk_form\";}}s:5:\"table\";a:5:{s:5:\"group\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:4:\"User\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:8:\"provider\";s:4:\"user\";s:15:\"entity revision\";b:0;s:4:\"join\";a:1:{s:16:\"users_field_data\";a:3:{s:10:\"left_field\";s:3:\"uid\";s:5:\"field\";s:3:\"uid\";s:4:\"type\";s:5:\"INNER\";}}s:11:\"entity type\";s:4:\"user\";}s:10:\"operations\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:16:\"Operations links\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:4:\"help\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:44:\"Provides links to perform entity operations.\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:2:\"id\";s:17:\"entity_operations\";}}s:15:\"rendered_entity\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:15:\"Rendered entity\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:4:\"help\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:33:\"Renders an entity in a view mode.\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:2:\"id\";s:15:\"rendered_entity\";}}s:9:\"view_user\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:26:\"Link to @entity_type_label\";s:12:\"\0*\0arguments\";a:1:{s:18:\"@entity_type_label\";r:14;}s:10:\"\0*\0options\";a:0:{}}s:4:\"help\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:46:\"Provide a view link to the @entity_type_label.\";s:12:\"\0*\0arguments\";a:1:{s:18:\"@entity_type_label\";r:14;}s:10:\"\0*\0options\";a:0:{}}s:2:\"id\";s:11:\"entity_link\";}}s:9:\"edit_user\";a:1:{s:5:\"field\";a:3:{s:5:\"title\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:31:\"Link to edit @entity_type_label\";s:12:\"\0*\0arguments\";a:1:{s:18:\"@entity_type_label\";r:14;}s:10:\"\0*\0options\";a:0:{}}s:4:\"help\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:47:\"Provide an edit link to the @entity_type_label.\";s:12:\"\0*\0arguments\";a:1:{s:18:\"@entity_type_label\";r:14;}s:10:\"\0*\0options\";a:0:{}}s:2:\"id\";s:16:\"entity_link_edit\";}}s:4:\"uuid\";a:7:{s:5:\"title\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:4:\"UUID\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:4:\"help\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:14:\"The user UUID.\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:5:\"field\";a:2:{s:2:\"id\";s:5:\"field\";s:14:\"click sortable\";b:0;}s:8:\"argument\";a:1:{s:2:\"id\";s:6:\"string\";}s:6:\"filter\";a:1:{s:2:\"id\";s:6:\"string\";}s:4:\"sort\";a:1:{s:2:\"id\";s:8:\"standard\";}s:12:\"entity field\";s:4:\"uuid\";}s:8:\"langcode\";a:7:{s:5:\"title\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:17:\"Original language\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:4:\"help\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:23:\"The user language code.\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:5:\"field\";a:1:{s:2:\"id\";s:5:\"field\";}s:8:\"
  339. /*!40000 ALTER TABLE `cache_default` ENABLE KEYS */;
  340. UNLOCK TABLES;
  341. --
  342. -- Table structure for table `cache_discovery`
  343. --
  344. DROP TABLE IF EXISTS `cache_discovery`;
  345. /*!40101 SET @saved_cs_client = @@character_set_client */;
  346. /*!40101 SET character_set_client = utf8 */;
  347. CREATE TABLE `cache_discovery` (
  348. `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  349. `data` longblob COMMENT 'A collection of data to cache.',
  350. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.',
  351. `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.',
  352. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  353. `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.',
  354. `checksum` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.',
  355. PRIMARY KEY (`cid`),
  356. KEY `expire` (`expire`),
  357. KEY `created` (`created`)
  358. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.';
  359. /*!40101 SET character_set_client = @saved_cs_client */;
  360. --
  361. -- Dumping data for table `cache_discovery`
  362. --
  363. LOCK TABLES `cache_discovery` WRITE;
  364. /*!40000 ALTER TABLE `cache_discovery` DISABLE KEYS */;
  365. INSERT INTO `cache_discovery` VALUES ('block_plugins','a:25:{s:10:\"help_block\";a:8:{s:11:\"admin_label\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:4:\"Help\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:8:\"category\";s:4:\"Help\";s:7:\"context\";a:0:{}s:19:\"context_definitions\";a:0:{}s:2:\"id\";s:10:\"help_block\";s:5:\"forms\";a:1:{s:13:\"settings_tray\";b:0;}s:5:\"class\";s:34:\"Drupal\\help\\Plugin\\Block\\HelpBlock\";s:8:\"provider\";s:4:\"help\";}s:20:\"node_syndicate_block\";a:7:{s:11:\"admin_label\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:9:\"Syndicate\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:8:\"category\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:6:\"System\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:7:\"context\";a:0:{}s:19:\"context_definitions\";a:0:{}s:2:\"id\";s:20:\"node_syndicate_block\";s:5:\"class\";s:39:\"Drupal\\node\\Plugin\\Block\\SyndicateBlock\";s:8:\"provider\";s:4:\"node\";}s:17:\"search_form_block\";a:7:{s:11:\"admin_label\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:11:\"Search form\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:8:\"category\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:5:\"Forms\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:7:\"context\";a:0:{}s:19:\"context_definitions\";a:0:{}s:2:\"id\";s:17:\"search_form_block\";s:5:\"class\";s:38:\"Drupal\\search\\Plugin\\Block\\SearchBlock\";s:8:\"provider\";s:6:\"search\";}s:9:\"shortcuts\";a:7:{s:11:\"admin_label\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:9:\"Shortcuts\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:8:\"category\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:5:\"Menus\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:7:\"context\";a:0:{}s:19:\"context_definitions\";a:0:{}s:2:\"id\";s:9:\"shortcuts\";s:5:\"class\";s:43:\"Drupal\\shortcut\\Plugin\\Block\\ShortcutsBlock\";s:8:\"provider\";s:8:\"shortcut\";}s:17:\"system_main_block\";a:8:{s:11:\"admin_label\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:17:\"Main page content\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:8:\"category\";s:6:\"System\";s:7:\"context\";a:0:{}s:19:\"context_definitions\";a:0:{}s:2:\"id\";s:17:\"system_main_block\";s:5:\"forms\";a:1:{s:13:\"settings_tray\";b:0;}s:5:\"class\";s:42:\"Drupal\\system\\Plugin\\Block\\SystemMainBlock\";s:8:\"provider\";s:6:\"system\";}s:21:\"system_messages_block\";a:7:{s:11:\"admin_label\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:8:\"Messages\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:8:\"category\";s:6:\"System\";s:7:\"context\";a:0:{}s:19:\"context_definitions\";a:0:{}s:2:\"id\";s:21:\"system_messages_block\";s:5:\"class\";s:46:\"Drupal\\system\\Plugin\\Block\\SystemMessagesBlock\";s:8:\"provider\";s:6:\"system\";}s:25:\"system_menu_block:account\";a:10:{s:11:\"admin_label\";s:17:\"User account menu\";s:8:\"category\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:5:\"Menus\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:7:\"context\";a:0:{}s:19:\"context_definitions\";a:0:{}s:2:\"id\";s:17:\"system_menu_block\";s:7:\"deriver\";s:47:\"Drupal\\system\\Plugin\\Derivative\\SystemMenuBlock\";s:5:\"forms\";a:1:{s:13:\"settings_tray\";s:43:\"\\Drupal\\system\\Form\\SystemMenuOffCanvasForm\";}s:5:\"class\";s:42:\"Drupal\\system\\Plugin\\Block\\SystemMenuBlock\";s:8:\"provider\";s:6:\"system\";s:19:\"config_dependencies\";a:1:{s:6:\"config\";a:1:{i:0;s:19:\"system.menu.account\";}}}s:23:\"system_menu_block:admin\";a:10:{s:11:\"admin_label\";s:14:\"Administration\";s:8:\"category\";r:83;s:7:\"context\";a:0:{}s:19:\"context_defin
  366. INSERT INTO `cache_discovery` VALUES ('typed_config_definitions','a:564:{s:9:\"undefined\";a:2:{s:5:\"label\";s:9:\"Undefined\";s:5:\"class\";s:35:\"Drupal\\Core\\Config\\Schema\\Undefined\";}s:6:\"ignore\";a:2:{s:5:\"label\";s:6:\"Ignore\";s:5:\"class\";s:32:\"Drupal\\Core\\Config\\Schema\\Ignore\";}s:7:\"boolean\";a:2:{s:5:\"label\";s:7:\"Boolean\";s:5:\"class\";s:49:\"Drupal\\Core\\TypedData\\Plugin\\DataType\\BooleanData\";}s:5:\"email\";a:2:{s:5:\"label\";s:5:\"Email\";s:5:\"class\";s:43:\"Drupal\\Core\\TypedData\\Plugin\\DataType\\Email\";}s:7:\"integer\";a:2:{s:5:\"label\";s:7:\"Integer\";s:5:\"class\";s:49:\"Drupal\\Core\\TypedData\\Plugin\\DataType\\IntegerData\";}s:9:\"timestamp\";a:2:{s:5:\"label\";s:9:\"Timestamp\";s:5:\"class\";s:47:\"Drupal\\Core\\TypedData\\Plugin\\DataType\\Timestamp\";}s:5:\"float\";a:2:{s:5:\"label\";s:5:\"Float\";s:5:\"class\";s:47:\"Drupal\\Core\\TypedData\\Plugin\\DataType\\FloatData\";}s:6:\"string\";a:2:{s:5:\"label\";s:6:\"String\";s:5:\"class\";s:48:\"Drupal\\Core\\TypedData\\Plugin\\DataType\\StringData\";}s:3:\"uri\";a:2:{s:5:\"label\";s:3:\"Uri\";s:5:\"class\";s:41:\"Drupal\\Core\\TypedData\\Plugin\\DataType\\Uri\";}s:7:\"mapping\";a:3:{s:5:\"label\";s:7:\"Mapping\";s:5:\"class\";s:33:\"Drupal\\Core\\Config\\Schema\\Mapping\";s:16:\"definition_class\";s:40:\"\\Drupal\\Core\\TypedData\\MapDataDefinition\";}s:8:\"sequence\";a:3:{s:5:\"label\";s:8:\"Sequence\";s:5:\"class\";s:34:\"Drupal\\Core\\Config\\Schema\\Sequence\";s:16:\"definition_class\";s:49:\"\\Drupal\\Core\\Config\\Schema\\SequenceDataDefinition\";}s:5:\"label\";a:3:{s:4:\"type\";s:6:\"string\";s:5:\"label\";s:5:\"Label\";s:12:\"translatable\";b:1;}s:12:\"plural_label\";a:2:{s:4:\"type\";s:5:\"label\";s:5:\"label\";s:15:\"Plural variants\";}s:4:\"path\";a:2:{s:4:\"type\";s:6:\"string\";s:5:\"label\";s:4:\"Path\";}s:4:\"text\";a:3:{s:4:\"type\";s:6:\"string\";s:5:\"label\";s:4:\"Text\";s:12:\"translatable\";b:1;}s:4:\"uuid\";a:3:{s:4:\"type\";s:6:\"string\";s:5:\"label\";s:4:\"UUID\";s:11:\"constraints\";a:1:{s:4:\"Uuid\";a:0:{}}}s:11:\"date_format\";a:4:{s:4:\"type\";s:6:\"string\";s:5:\"label\";s:11:\"Date format\";s:12:\"translatable\";b:1;s:19:\"translation context\";s:15:\"PHP date format\";}s:9:\"color_hex\";a:2:{s:4:\"type\";s:6:\"string\";s:5:\"label\";s:5:\"Color\";}s:17:\"_core_config_info\";a:2:{s:4:\"type\";s:7:\"mapping\";s:7:\"mapping\";a:1:{s:19:\"default_config_hash\";a:2:{s:4:\"type\";s:6:\"string\";s:5:\"label\";s:26:\"Default configuration hash\";}}}s:13:\"config_object\";a:2:{s:4:\"type\";s:7:\"mapping\";s:7:\"mapping\";a:2:{s:8:\"langcode\";a:2:{s:4:\"type\";s:6:\"string\";s:5:\"label\";s:13:\"Language code\";}s:5:\"_core\";a:1:{s:4:\"type\";s:17:\"_core_config_info\";}}}s:4:\"mail\";a:3:{s:4:\"type\";s:7:\"mapping\";s:5:\"label\";s:4:\"Mail\";s:7:\"mapping\";a:2:{s:7:\"subject\";a:2:{s:4:\"type\";s:5:\"label\";s:5:\"label\";s:7:\"Subject\";}s:4:\"body\";a:2:{s:4:\"type\";s:4:\"text\";s:5:\"label\";s:4:\"Body\";}}}s:6:\"filter\";a:3:{s:4:\"type\";s:7:\"mapping\";s:5:\"label\";s:6:\"Filter\";s:7:\"mapping\";a:5:{s:2:\"id\";a:2:{s:4:\"type\";s:6:\"string\";s:5:\"label\";s:2:\"ID\";}s:8:\"provider\";a:2:{s:4:\"type\";s:6:\"string\";s:5:\"label\";s:8:\"Provider\";}s:6:\"status\";a:2:{s:4:\"type\";s:7:\"boolean\";s:5:\"label\";s:6:\"Status\";}s:6:\"weight\";a:2:{s:4:\"type\";s:7:\"integer\";s:5:\"label\";s:6:\"Weight\";}s:8:\"settings\";a:1:{s:4:\"type\";s:28:\"filter_settings.[%parent.id]\";}}}s:28:\"action_configuration_default\";a:3:{s:4:\"type\";s:8:\"sequence\";s:5:\"label\";s:20:\"Action configuration\";s:8:\"sequence\";a:1:{s:4:\"type\";s:6:\"string\";}}s:14:\"theme_settings\";a:2:{s:4:\"type\";s:13:\"config_object\";s:7:\"mapping\";a:4:{s:7:\"favicon\";a:3:{s:4:\"type\";s:7:\"mapping\";s:5:\"label\";s:22:\"Shortcut icon settings\";s:7:\"mapping\";a:4:{s:8:\"mimetype\";a:2:{s:4:\"type\";s:6:\"string\";s:5:\"label\";s:9:\"MIME type\";}s:4:\"path\";a:2:{s:4:\"type\";s:6:\"string\";s:5:\"label\";s:4:\"Path\";}s:3:\"url\";a:2:{s:4:\"type\";s:6:\"string\";s:5:\"label\";s:3:\"URL\";}s:11:\"use_default
  367. /*!40000 ALTER TABLE `cache_discovery` ENABLE KEYS */;
  368. UNLOCK TABLES;
  369. --
  370. -- Table structure for table `cache_dynamic_page_cache`
  371. --
  372. DROP TABLE IF EXISTS `cache_dynamic_page_cache`;
  373. /*!40101 SET @saved_cs_client = @@character_set_client */;
  374. /*!40101 SET character_set_client = utf8 */;
  375. CREATE TABLE `cache_dynamic_page_cache` (
  376. `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  377. `data` longblob COMMENT 'A collection of data to cache.',
  378. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.',
  379. `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.',
  380. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  381. `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.',
  382. `checksum` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.',
  383. PRIMARY KEY (`cid`),
  384. KEY `expire` (`expire`),
  385. KEY `created` (`created`)
  386. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.';
  387. /*!40101 SET character_set_client = @saved_cs_client */;
  388. --
  389. -- Dumping data for table `cache_dynamic_page_cache`
  390. --
  391. LOCK TABLES `cache_dynamic_page_cache` WRITE;
  392. /*!40000 ALTER TABLE `cache_dynamic_page_cache` DISABLE KEYS */;
  393. /*!40000 ALTER TABLE `cache_dynamic_page_cache` ENABLE KEYS */;
  394. UNLOCK TABLES;
  395. --
  396. -- Table structure for table `cache_entity`
  397. --
  398. DROP TABLE IF EXISTS `cache_entity`;
  399. /*!40101 SET @saved_cs_client = @@character_set_client */;
  400. /*!40101 SET character_set_client = utf8 */;
  401. CREATE TABLE `cache_entity` (
  402. `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  403. `data` longblob COMMENT 'A collection of data to cache.',
  404. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.',
  405. `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.',
  406. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  407. `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.',
  408. `checksum` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.',
  409. PRIMARY KEY (`cid`),
  410. KEY `expire` (`expire`),
  411. KEY `created` (`created`)
  412. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.';
  413. /*!40101 SET character_set_client = @saved_cs_client */;
  414. --
  415. -- Dumping data for table `cache_entity`
  416. --
  417. LOCK TABLES `cache_entity` WRITE;
  418. /*!40000 ALTER TABLE `cache_entity` DISABLE KEYS */;
  419. INSERT INTO `cache_entity` VALUES ('values:shortcut:1','O:31:\"Drupal\\shortcut\\Entity\\Shortcut\":28:{s:9:\"\0*\0values\";a:8:{s:2:\"id\";a:1:{s:9:\"x-default\";s:1:\"1\";}s:12:\"shortcut_set\";a:1:{s:9:\"x-default\";s:7:\"default\";}s:4:\"uuid\";a:1:{s:9:\"x-default\";s:36:\"2312fa94-1f6e-4d39-bd03-363e6f256bed\";}s:8:\"langcode\";a:1:{s:9:\"x-default\";s:2:\"en\";}s:5:\"title\";a:1:{s:9:\"x-default\";s:11:\"Add content\";}s:6:\"weight\";a:1:{s:9:\"x-default\";s:3:\"-20\";}s:4:\"link\";a:1:{s:9:\"x-default\";a:3:{s:3:\"uri\";s:18:\"internal:/node/add\";s:5:\"title\";N;s:7:\"options\";a:0:{}}}s:16:\"default_langcode\";a:1:{s:9:\"x-default\";s:1:\"1\";}}s:9:\"\0*\0fields\";a:0:{}s:19:\"\0*\0fieldDefinitions\";N;s:12:\"\0*\0languages\";N;s:14:\"\0*\0langcodeKey\";s:8:\"langcode\";s:21:\"\0*\0defaultLangcodeKey\";s:16:\"default_langcode\";s:17:\"\0*\0activeLangcode\";s:9:\"x-default\";s:18:\"\0*\0defaultLangcode\";s:2:\"en\";s:15:\"\0*\0translations\";a:1:{s:9:\"x-default\";a:1:{s:6:\"status\";i:1;}}s:24:\"\0*\0translationInitialize\";b:0;s:14:\"\0*\0newRevision\";b:0;s:20:\"\0*\0isDefaultRevision\";b:1;s:13:\"\0*\0entityKeys\";a:3:{s:6:\"bundle\";s:7:\"default\";s:2:\"id\";s:1:\"1\";s:4:\"uuid\";s:36:\"2312fa94-1f6e-4d39-bd03-363e6f256bed\";}s:25:\"\0*\0translatableEntityKeys\";a:3:{s:5:\"label\";a:1:{s:9:\"x-default\";s:11:\"Add content\";}s:8:\"langcode\";a:1:{s:9:\"x-default\";s:2:\"en\";}s:16:\"default_langcode\";a:1:{s:9:\"x-default\";s:1:\"1\";}}s:12:\"\0*\0validated\";b:0;s:21:\"\0*\0validationRequired\";b:0;s:19:\"\0*\0loadedRevisionId\";N;s:33:\"\0*\0revisionTranslationAffectedKey\";s:29:\"revision_translation_affected\";s:37:\"\0*\0enforceRevisionTranslationAffected\";a:0:{}s:15:\"\0*\0entityTypeId\";s:8:\"shortcut\";s:15:\"\0*\0enforceIsNew\";N;s:12:\"\0*\0typedData\";N;s:16:\"\0*\0cacheContexts\";a:0:{}s:12:\"\0*\0cacheTags\";a:0:{}s:14:\"\0*\0cacheMaxAge\";i:-1;s:14:\"\0*\0_serviceIds\";a:0:{}s:18:\"\0*\0_entityStorages\";a:0:{}s:12:\"\0*\0isSyncing\";b:0;}',-1,1576041672.003,1,'entity_field_info shortcut_values','57'),('values:shortcut:2','O:31:\"Drupal\\shortcut\\Entity\\Shortcut\":28:{s:9:\"\0*\0values\";a:8:{s:2:\"id\";a:1:{s:9:\"x-default\";s:1:\"2\";}s:12:\"shortcut_set\";a:1:{s:9:\"x-default\";s:7:\"default\";}s:4:\"uuid\";a:1:{s:9:\"x-default\";s:36:\"7d0593d3-fc91-4fcf-8614-a7eadd4c1878\";}s:8:\"langcode\";a:1:{s:9:\"x-default\";s:2:\"en\";}s:5:\"title\";a:1:{s:9:\"x-default\";s:11:\"All content\";}s:6:\"weight\";a:1:{s:9:\"x-default\";s:3:\"-19\";}s:4:\"link\";a:1:{s:9:\"x-default\";a:3:{s:3:\"uri\";s:23:\"internal:/admin/content\";s:5:\"title\";N;s:7:\"options\";a:0:{}}}s:16:\"default_langcode\";a:1:{s:9:\"x-default\";s:1:\"1\";}}s:9:\"\0*\0fields\";a:0:{}s:19:\"\0*\0fieldDefinitions\";N;s:12:\"\0*\0languages\";N;s:14:\"\0*\0langcodeKey\";s:8:\"langcode\";s:21:\"\0*\0defaultLangcodeKey\";s:16:\"default_langcode\";s:17:\"\0*\0activeLangcode\";s:9:\"x-default\";s:18:\"\0*\0defaultLangcode\";s:2:\"en\";s:15:\"\0*\0translations\";a:1:{s:9:\"x-default\";a:1:{s:6:\"status\";i:1;}}s:24:\"\0*\0translationInitialize\";b:0;s:14:\"\0*\0newRevision\";b:0;s:20:\"\0*\0isDefaultRevision\";b:1;s:13:\"\0*\0entityKeys\";a:3:{s:6:\"bundle\";s:7:\"default\";s:2:\"id\";s:1:\"2\";s:4:\"uuid\";s:36:\"7d0593d3-fc91-4fcf-8614-a7eadd4c1878\";}s:25:\"\0*\0translatableEntityKeys\";a:3:{s:5:\"label\";a:1:{s:9:\"x-default\";s:11:\"All content\";}s:8:\"langcode\";a:1:{s:9:\"x-default\";s:2:\"en\";}s:16:\"default_langcode\";a:1:{s:9:\"x-default\";s:1:\"1\";}}s:12:\"\0*\0validated\";b:0;s:21:\"\0*\0validationRequired\";b:0;s:19:\"\0*\0loadedRevisionId\";N;s:33:\"\0*\0revisionTranslationAffectedKey\";s:29:\"revision_translation_affected\";s:37:\"\0*\0enforceRevisionTranslationAffected\";a:0:{}s:15:\"\0*\0entityTypeId\";s:8:\"shortcut\";s:15:\"\0*\0enforceIsNew\";N;s:12:\"\0*\0typedData\";N;s:16:\"\0*\0cacheContexts\";a:0:{}s:12:\"\0*\0cacheTags\";a:0:{}s:14:\"\0*\0cacheMaxAge\";i:-1;s:14:\"\0*\0_serviceIds\";a:0:{}s:18:\"\0*\0_entityStorages\";a:0:{}s:12:\"\0*\0isSyncing\";b:0;}',-1,1576041672.012,1,'entity_field_info shortcut_va
  420. /*!40000 ALTER TABLE `cache_entity` ENABLE KEYS */;
  421. UNLOCK TABLES;
  422. --
  423. -- Table structure for table `cache_menu`
  424. --
  425. DROP TABLE IF EXISTS `cache_menu`;
  426. /*!40101 SET @saved_cs_client = @@character_set_client */;
  427. /*!40101 SET character_set_client = utf8 */;
  428. CREATE TABLE `cache_menu` (
  429. `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  430. `data` longblob COMMENT 'A collection of data to cache.',
  431. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.',
  432. `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.',
  433. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  434. `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.',
  435. `checksum` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.',
  436. PRIMARY KEY (`cid`),
  437. KEY `expire` (`expire`),
  438. KEY `created` (`created`)
  439. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.';
  440. /*!40101 SET character_set_client = @saved_cs_client */;
  441. --
  442. -- Dumping data for table `cache_menu`
  443. --
  444. LOCK TABLES `cache_menu` WRITE;
  445. /*!40000 ALTER TABLE `cache_menu` DISABLE KEYS */;
  446. INSERT INTO `cache_menu` VALUES ('active-trail:route::route_parameters:a:0:{}','a:4:{s:7:\"account\";a:1:{s:0:\"\";s:0:\"\";}s:4:\"main\";a:1:{s:0:\"\";s:0:\"\";}s:5:\"tools\";a:1:{s:0:\"\";s:0:\"\";}s:6:\"footer\";a:1:{s:0:\"\";s:0:\"\";}}',-1,1576041740.845,1,'config:system.menu.account config:system.menu.footer config:system.menu.main config:system.menu.tools','240'),('active-trail:route:view.frontpage.page_1:route_parameters:a:0:{}','a:4:{s:7:\"account\";a:1:{s:0:\"\";s:0:\"\";}s:4:\"main\";a:1:{s:0:\"\";s:0:\"\";}s:5:\"tools\";a:1:{s:0:\"\";s:0:\"\";}s:6:\"footer\";a:1:{s:0:\"\";s:0:\"\";}}',-1,1576041695.235,1,'config:system.menu.account config:system.menu.footer config:system.menu.main config:system.menu.tools','240'),('tree-data::C:35:\"Drupal\\Core\\Menu\\MenuTreeParameters\":181:{a:6:{s:4:\"root\";s:22:\"system.admin_structure\";s:8:\"minDepth\";i:1;s:8:\"maxDepth\";i:1;s:15:\"expandedParents\";a:0:{}s:11:\"activeTrail\";a:0:{}s:10:\"conditions\";a:1:{s:7:\"enabled\";i:1;}}}','a:3:{s:4:\"tree\";a:8:{s:30:\"entity.contact_form.collection\";a:5:{s:10:\"definition\";a:16:{s:9:\"menu_name\";s:5:\"admin\";s:2:\"id\";s:30:\"entity.contact_form.collection\";s:6:\"parent\";s:22:\"system.admin_structure\";s:10:\"route_name\";s:30:\"entity.contact_form.collection\";s:16:\"route_parameters\";a:0:{}s:3:\"url\";s:0:\"\";s:5:\"title\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:13:\"Contact forms\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:11:\"description\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:32:\"Create and manage contact forms.\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:5:\"class\";s:32:\"Drupal\\Core\\Menu\\MenuLinkDefault\";s:7:\"options\";a:0:{}s:8:\"provider\";s:7:\"contact\";s:7:\"enabled\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:8:\"metadata\";a:0:{}s:10:\"form_class\";s:41:\"Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm\";}s:12:\"has_children\";s:1:\"0\";s:15:\"in_active_trail\";b:0;s:7:\"subtree\";a:0:{}s:5:\"depth\";s:1:\"3\";}s:19:\"block.admin_display\";a:5:{s:10:\"definition\";a:16:{s:9:\"menu_name\";s:5:\"admin\";s:2:\"id\";s:19:\"block.admin_display\";s:6:\"parent\";s:22:\"system.admin_structure\";s:10:\"route_name\";s:19:\"block.admin_display\";s:16:\"route_parameters\";a:0:{}s:3:\"url\";s:0:\"\";s:5:\"title\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:12:\"Block layout\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:11:\"description\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:79:\"Configure what block content appears in your site\'s sidebars and other regions.\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:5:\"class\";s:32:\"Drupal\\Core\\Menu\\MenuLinkDefault\";s:7:\"options\";a:0:{}s:8:\"provider\";s:5:\"block\";s:7:\"enabled\";s:1:\"1\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:8:\"metadata\";a:0:{}s:10:\"form_class\";s:41:\"Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm\";}s:12:\"has_children\";s:1:\"0\";s:15:\"in_active_trail\";b:0;s:7:\"subtree\";a:0:{}s:5:\"depth\";s:1:\"3\";}s:27:\"entity.node_type.collection\";a:5:{s:10:\"definition\";a:16:{s:9:\"menu_name\";s:5:\"admin\";s:2:\"id\";s:27:\"entity.node_type.collection\";s:6:\"parent\";s:22:\"system.admin_structure\";s:10:\"route_name\";s:27:\"entity.node_type.collection\";s:16:\"route_parameters\";a:0:{}s:3:\"url\";s:0:\"\";s:5:\"title\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:13:\"Content types\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:11:\"description\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:71:\"Create and manage fields, forms, and display settings for your content.\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:5:\"class\";s:32:\"Drupal\\Core\\Menu\\MenuLinkDefault\";s:7:\"options\";a:0:{}s:8:\"provider\";s:4:\"node\";s:7:\"enabled\";s:1
  447. /*!40000 ALTER TABLE `cache_menu` ENABLE KEYS */;
  448. UNLOCK TABLES;
  449. --
  450. -- Table structure for table `cache_page`
  451. --
  452. DROP TABLE IF EXISTS `cache_page`;
  453. /*!40101 SET @saved_cs_client = @@character_set_client */;
  454. /*!40101 SET character_set_client = utf8 */;
  455. CREATE TABLE `cache_page` (
  456. `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  457. `data` longblob COMMENT 'A collection of data to cache.',
  458. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.',
  459. `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.',
  460. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  461. `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.',
  462. `checksum` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.',
  463. PRIMARY KEY (`cid`),
  464. KEY `expire` (`expire`),
  465. KEY `created` (`created`)
  466. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.';
  467. /*!40101 SET character_set_client = @saved_cs_client */;
  468. --
  469. -- Dumping data for table `cache_page`
  470. --
  471. LOCK TABLES `cache_page` WRITE;
  472. /*!40000 ALTER TABLE `cache_page` DISABLE KEYS */;
  473. /*!40000 ALTER TABLE `cache_page` ENABLE KEYS */;
  474. UNLOCK TABLES;
  475. --
  476. -- Table structure for table `cache_render`
  477. --
  478. DROP TABLE IF EXISTS `cache_render`;
  479. /*!40101 SET @saved_cs_client = @@character_set_client */;
  480. /*!40101 SET character_set_client = utf8 */;
  481. CREATE TABLE `cache_render` (
  482. `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  483. `data` longblob COMMENT 'A collection of data to cache.',
  484. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.',
  485. `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.',
  486. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  487. `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.',
  488. `checksum` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.',
  489. PRIMARY KEY (`cid`),
  490. KEY `expire` (`expire`),
  491. KEY `created` (`created`)
  492. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.';
  493. /*!40101 SET character_set_client = @saved_cs_client */;
  494. --
  495. -- Dumping data for table `cache_render`
  496. --
  497. LOCK TABLES `cache_render` WRITE;
  498. /*!40000 ALTER TABLE `cache_render` DISABLE KEYS */;
  499. INSERT INTO `cache_render` VALUES ('entity_view:block:claro_breadcrumbs:[languages:language_interface]=en:[theme]=claro:[url.path.is_front]=is_front.0:[url.path.parent]=admin/structure/block/list:[user.permissions]=7160c117a79196682f4c505d7f13278b8c422e46dc32e34791b7f1c8cc5cf33f','a:3:{s:7:\"#markup\";O:25:\"Drupal\\Core\\Render\\Markup\":1:{s:9:\"\0*\0string\";s:1478:\"\n\n<!-- THEME DEBUG -->\n<!-- THEME HOOK: \'block\' -->\n<!-- FILE NAME SUGGESTIONS:\n * block--claro-breadcrumbs.html.twig\n * block--system-breadcrumb-block.html.twig\n * block--system.html.twig\n x block.html.twig\n-->\n<!-- BEGIN OUTPUT from \'core/themes/classy/templates/block/block.html.twig\' -->\n<div id=\"block-claro-breadcrumbs\" class=\"block block-system block-system-breadcrumb-block\">\n \n \n \n\n<!-- THEME DEBUG -->\n<!-- THEME HOOK: \'breadcrumb\' -->\n<!-- BEGIN OUTPUT from \'core/themes/claro/templates/breadcrumb.html.twig\' -->\n <nav class=\"breadcrumb\" role=\"navigation\" aria-labelledby=\"system-breadcrumb\">\n <h2 id=\"system-breadcrumb\" class=\"visually-hidden\">Breadcrumb</h2>\n <ol class=\"breadcrumb__list\">\n <li class=\"breadcrumb__item\">\n <a href=\"/\" class=\"breadcrumb__link\">Home</a>\n </li>\n <li class=\"breadcrumb__item\">\n <a href=\"/admin\" class=\"breadcrumb__link\">Administration</a>\n </li>\n <li class=\"breadcrumb__item\">\n <a href=\"/admin/structure\" class=\"breadcrumb__link\">Structure</a>\n </li>\n <li class=\"breadcrumb__item\">\n <a href=\"/admin/structure/block\" class=\"breadcrumb__link\">Block layout</a>\n </li>\n </ol>\n </nav>\n\n<!-- END OUTPUT from \'core/themes/claro/templates/breadcrumb.html.twig\' -->\n\n\n </div>\n\n<!-- END OUTPUT from \'core/themes/classy/templates/block/block.html.twig\' -->\n\n\";}s:9:\"#attached\";a:0:{}s:6:\"#cache\";a:3:{s:8:\"contexts\";a:5:{i:0;s:28:\"languages:language_interface\";i:1;s:5:\"theme\";i:2;s:17:\"url.path.is_front\";i:3;s:15:\"url.path.parent\";i:4;s:16:\"user.permissions\";}s:4:\"tags\";a:2:{i:0;s:10:\"block_view\";i:1;s:36:\"config:block.block.claro_breadcrumbs\";}s:7:\"max-age\";i:-1;}}',-1,1576041717.134,1,'block_view config:block.block.claro_breadcrumbs rendered','12'),('entity_view:block:claro_breadcrumbs:[languages:language_interface]=en:[theme]=claro:[url.path.is_front]=is_front.0:[url.path.parent]=admin/structure:[user.permissions]=7160c117a79196682f4c505d7f13278b8c422e46dc32e34791b7f1c8cc5cf33f','a:3:{s:7:\"#markup\";O:25:\"Drupal\\Core\\Render\\Markup\":1:{s:9:\"\0*\0string\";s:1325:\"\n\n<!-- THEME DEBUG -->\n<!-- THEME HOOK: \'block\' -->\n<!-- FILE NAME SUGGESTIONS:\n * block--claro-breadcrumbs.html.twig\n * block--system-breadcrumb-block.html.twig\n * block--system.html.twig\n x block.html.twig\n-->\n<!-- BEGIN OUTPUT from \'core/themes/classy/templates/block/block.html.twig\' -->\n<div id=\"block-claro-breadcrumbs\" class=\"block block-system block-system-breadcrumb-block\">\n \n \n \n\n<!-- THEME DEBUG -->\n<!-- THEME HOOK: \'breadcrumb\' -->\n<!-- BEGIN OUTPUT from \'core/themes/claro/templates/breadcrumb.html.twig\' -->\n <nav class=\"breadcrumb\" role=\"navigation\" aria-labelledby=\"system-breadcrumb\">\n <h2 id=\"system-breadcrumb\" class=\"visually-hidden\">Breadcrumb</h2>\n <ol class=\"breadcrumb__list\">\n <li class=\"breadcrumb__item\">\n <a href=\"/\" class=\"breadcrumb__link\">Home</a>\n </li>\n <li class=\"breadcrumb__item\">\n <a href=\"/admin\" class=\"breadcrumb__link\">Administration</a>\n </li>\n <li class=\"breadcrumb__item\">\n <a href=\"/admin/structure\" class=\"breadcrumb__link\">Structure</a>\n </li>\n </ol>\n </nav>\n\n<!-- END OUTPUT from \'core/themes/claro/templates/breadcrumb.html.twig\' -->\n\n\n </div>\n\n<!-- END OUTPUT from \'core/themes/classy/templates/block/block.htm
  500. /*!40000 ALTER TABLE `cache_render` ENABLE KEYS */;
  501. UNLOCK TABLES;
  502. --
  503. -- Table structure for table `cache_toolbar`
  504. --
  505. DROP TABLE IF EXISTS `cache_toolbar`;
  506. /*!40101 SET @saved_cs_client = @@character_set_client */;
  507. /*!40101 SET character_set_client = utf8 */;
  508. CREATE TABLE `cache_toolbar` (
  509. `cid` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  510. `data` longblob COMMENT 'A collection of data to cache.',
  511. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or -1 for never.',
  512. `created` decimal(14,3) NOT NULL DEFAULT '0.000' COMMENT 'A timestamp with millisecond precision indicating when the cache entry was created.',
  513. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  514. `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.',
  515. `checksum` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'The tag invalidation checksum when this entry was saved.',
  516. PRIMARY KEY (`cid`),
  517. KEY `expire` (`expire`),
  518. KEY `created` (`created`)
  519. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Storage for the cache API.';
  520. /*!40101 SET character_set_client = @saved_cs_client */;
  521. --
  522. -- Dumping data for table `cache_toolbar`
  523. --
  524. LOCK TABLES `cache_toolbar` WRITE;
  525. /*!40000 ALTER TABLE `cache_toolbar` DISABLE KEYS */;
  526. /*!40000 ALTER TABLE `cache_toolbar` ENABLE KEYS */;
  527. UNLOCK TABLES;
  528. --
  529. -- Table structure for table `cachetags`
  530. --
  531. DROP TABLE IF EXISTS `cachetags`;
  532. /*!40101 SET @saved_cs_client = @@character_set_client */;
  533. /*!40101 SET character_set_client = utf8 */;
  534. CREATE TABLE `cachetags` (
  535. `tag` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'Namespace-prefixed tag string.',
  536. `invalidations` int(11) NOT NULL DEFAULT '0' COMMENT 'Number incremented when the tag is invalidated.',
  537. PRIMARY KEY (`tag`)
  538. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Cache table for tracking cache tag invalidations.';
  539. /*!40101 SET character_set_client = @saved_cs_client */;
  540. --
  541. -- Dumping data for table `cachetags`
  542. --
  543. LOCK TABLES `cachetags` WRITE;
  544. /*!40000 ALTER TABLE `cachetags` DISABLE KEYS */;
  545. INSERT INTO `cachetags` VALUES ('4xx-response',66),('block_content_view',2),('breakpoints',42),('comment_view',1),('config:action_list',4),('config:block.block.bartik_account_menu',1),('config:block.block.bartik_branding',1),('config:block.block.bartik_breadcrumbs',1),('config:block.block.bartik_content',1),('config:block.block.bartik_footer',1),('config:block.block.bartik_help',1),('config:block.block.bartik_local_actions',1),('config:block.block.bartik_local_tasks',1),('config:block.block.bartik_main_menu',1),('config:block.block.bartik_messages',1),('config:block.block.bartik_page_title',1),('config:block.block.bartik_powered',1),('config:block.block.bartik_search',2),('config:block.block.bartik_tools',1),('config:block.block.claro_breadcrumbs',1),('config:block.block.claro_content',1),('config:block.block.claro_help',1),('config:block.block.claro_local_actions',1),('config:block.block.claro_messages',1),('config:block.block.claro_page_title',1),('config:block.block.claro_primary_local_tasks',1),('config:block.block.claro_secondary_local_tasks',1),('config:block.block.nonvueblock',8),('config:block.block.seven_breadcrumbs',1),('config:block.block.seven_content',1),('config:block.block.seven_help',1),('config:block.block.seven_local_actions',1),('config:block.block.seven_messages',1),('config:block.block.seven_page_title',1),('config:block.block.seven_primary_local_tasks',1),('config:block.block.seven_secondary_local_tasks',1),('config:block.block.vueblock',8),('config:block.block.vue_js_account_menu',2),('config:block.block.vue_js_branding',2),('config:block.block.vue_js_breadcrumbs',2),('config:block.block.vue_js_content',2),('config:block.block.vue_js_example_account_menu',6),('config:block.block.vue_js_example_branding',6),('config:block.block.vue_js_example_breadcrumbs',6),('config:block.block.vue_js_example_content',6),('config:block.block.vue_js_example_footer',6),('config:block.block.vue_js_example_help',6),('config:block.block.vue_js_example_local_actions',6),('config:block.block.vue_js_example_local_tasks',6),('config:block.block.vue_js_example_main_menu',6),('config:block.block.vue_js_example_messages',6),('config:block.block.vue_js_example_page_title',6),('config:block.block.vue_js_example_powered',6),('config:block.block.vue_js_example_search',7),('config:block.block.vue_js_example_tools',6),('config:block.block.vue_js_footer',2),('config:block.block.vue_js_help',2),('config:block.block.vue_js_local_actions',2),('config:block.block.vue_js_local_tasks',2),('config:block.block.vue_js_main_menu',2),('config:block.block.vue_js_messages',2),('config:block.block.vue_js_page_title',2),('config:block.block.vue_js_powered',2),('config:block.block.vue_js_search',2),('config:block.block.vue_js_tools',2),('config:block_content_type_list',1),('config:block_list',17),('config:comment_type_list',1),('config:contact.form.feedback',1),('config:contact_form_list',3),('config:core.entity_form_display.block_content.basic.default',1),('config:core.entity_form_display.node.article.default',1),('config:core.entity_form_display.node.page.default',1),('config:core.extension',55),('config:editor_list',1),('config:entity_form_display_list',2),('config:entity_form_mode_list',1),('config:entity_view_display_list',1),('config:entity_view_mode_list',5),('config:field.field.block_content.basic.body',1),('config:field.field.node.article.body',1),('config:field.field.node.page.body',1),('config:filter_format_list',2),('config:image_style_list',1),('config:menu_list',1),('config:node.settings',1),('config:node_type_list',1),('config:rdf_mapping_list',1),('config:search_page_list',1),('config:shortcut.set.default',1),('config:shortcut_set_list',2),('config:system.date',1),('config:system.file',2),('config:system.menu.account',65),('config:system.menu.admin',66),('config:system.menu.footer',55),('config:system.menu.main',64),('config:system.menu.tools',56),('config:system.performance',1),('config:system.site',2),('config:system.theme',6),('config:taxonomy_vocabulary_list',1),('config:tour_list',1),('config:user.role.anonymous',2),('config:us
  546. /*!40000 ALTER TABLE `cachetags` ENABLE KEYS */;
  547. UNLOCK TABLES;
  548. --
  549. -- Table structure for table `comment`
  550. --
  551. DROP TABLE IF EXISTS `comment`;
  552. /*!40101 SET @saved_cs_client = @@character_set_client */;
  553. /*!40101 SET character_set_client = utf8 */;
  554. CREATE TABLE `comment` (
  555. `cid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  556. `comment_type` varchar(32) CHARACTER SET ascii NOT NULL COMMENT 'The ID of the target entity.',
  557. `uuid` varchar(128) CHARACTER SET ascii NOT NULL,
  558. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  559. PRIMARY KEY (`cid`),
  560. UNIQUE KEY `comment_field__uuid__value` (`uuid`),
  561. KEY `comment_field__comment_type__target_id` (`comment_type`)
  562. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for comment entities.';
  563. /*!40101 SET character_set_client = @saved_cs_client */;
  564. --
  565. -- Dumping data for table `comment`
  566. --
  567. LOCK TABLES `comment` WRITE;
  568. /*!40000 ALTER TABLE `comment` DISABLE KEYS */;
  569. /*!40000 ALTER TABLE `comment` ENABLE KEYS */;
  570. UNLOCK TABLES;
  571. --
  572. -- Table structure for table `comment__comment_body`
  573. --
  574. DROP TABLE IF EXISTS `comment__comment_body`;
  575. /*!40101 SET @saved_cs_client = @@character_set_client */;
  576. /*!40101 SET character_set_client = utf8 */;
  577. CREATE TABLE `comment__comment_body` (
  578. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  579. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  580. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  581. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to, which for an unversioned entity type is the same as the entity id',
  582. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  583. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  584. `comment_body_value` longtext NOT NULL,
  585. `comment_body_format` varchar(255) CHARACTER SET ascii DEFAULT NULL,
  586. PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`),
  587. KEY `bundle` (`bundle`),
  588. KEY `revision_id` (`revision_id`),
  589. KEY `comment_body_format` (`comment_body_format`)
  590. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Data storage for comment field comment_body.';
  591. /*!40101 SET character_set_client = @saved_cs_client */;
  592. --
  593. -- Dumping data for table `comment__comment_body`
  594. --
  595. LOCK TABLES `comment__comment_body` WRITE;
  596. /*!40000 ALTER TABLE `comment__comment_body` DISABLE KEYS */;
  597. /*!40000 ALTER TABLE `comment__comment_body` ENABLE KEYS */;
  598. UNLOCK TABLES;
  599. --
  600. -- Table structure for table `comment_entity_statistics`
  601. --
  602. DROP TABLE IF EXISTS `comment_entity_statistics`;
  603. /*!40101 SET @saved_cs_client = @@character_set_client */;
  604. /*!40101 SET character_set_client = utf8 */;
  605. CREATE TABLE `comment_entity_statistics` (
  606. `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The entity_id of the entity for which the statistics are compiled.',
  607. `entity_type` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT 'node' COMMENT 'The entity_type of the entity to which this comment is a reply.',
  608. `field_name` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field_name of the field that was used to add this comment.',
  609. `cid` int(11) NOT NULL DEFAULT '0' COMMENT 'The comment.cid of the last comment.',
  610. `last_comment_timestamp` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp of the last comment that was posted within this node, from comment.changed.',
  611. `last_comment_name` varchar(60) DEFAULT NULL COMMENT 'The name of the latest author to post a comment on this node, from comment.name.',
  612. `last_comment_uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The user ID of the latest author to post a comment on this node, from comment.uid.',
  613. `comment_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The total number of comments on this entity.',
  614. PRIMARY KEY (`entity_id`,`entity_type`,`field_name`),
  615. KEY `last_comment_timestamp` (`last_comment_timestamp`),
  616. KEY `comment_count` (`comment_count`),
  617. KEY `last_comment_uid` (`last_comment_uid`)
  618. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Maintains statistics of entity and comments posts to show …';
  619. /*!40101 SET character_set_client = @saved_cs_client */;
  620. --
  621. -- Dumping data for table `comment_entity_statistics`
  622. --
  623. LOCK TABLES `comment_entity_statistics` WRITE;
  624. /*!40000 ALTER TABLE `comment_entity_statistics` DISABLE KEYS */;
  625. /*!40000 ALTER TABLE `comment_entity_statistics` ENABLE KEYS */;
  626. UNLOCK TABLES;
  627. --
  628. -- Table structure for table `comment_field_data`
  629. --
  630. DROP TABLE IF EXISTS `comment_field_data`;
  631. /*!40101 SET @saved_cs_client = @@character_set_client */;
  632. /*!40101 SET character_set_client = utf8 */;
  633. CREATE TABLE `comment_field_data` (
  634. `cid` int(10) unsigned NOT NULL,
  635. `comment_type` varchar(32) CHARACTER SET ascii NOT NULL COMMENT 'The ID of the target entity.',
  636. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  637. `status` tinyint(4) NOT NULL,
  638. `uid` int(10) unsigned NOT NULL COMMENT 'The ID of the target entity.',
  639. `pid` int(10) unsigned DEFAULT NULL COMMENT 'The ID of the target entity.',
  640. `entity_id` int(10) unsigned DEFAULT NULL COMMENT 'The ID of the target entity.',
  641. `subject` varchar(64) DEFAULT NULL,
  642. `name` varchar(60) DEFAULT NULL,
  643. `mail` varchar(254) DEFAULT NULL,
  644. `homepage` varchar(255) DEFAULT NULL,
  645. `hostname` varchar(128) DEFAULT NULL,
  646. `created` int(11) NOT NULL,
  647. `changed` int(11) DEFAULT NULL,
  648. `thread` varchar(255) NOT NULL,
  649. `entity_type` varchar(32) CHARACTER SET ascii NOT NULL,
  650. `field_name` varchar(32) CHARACTER SET ascii NOT NULL,
  651. `default_langcode` tinyint(4) NOT NULL,
  652. PRIMARY KEY (`cid`,`langcode`),
  653. KEY `comment__id__default_langcode__langcode` (`cid`,`default_langcode`,`langcode`),
  654. KEY `comment_field__comment_type__target_id` (`comment_type`),
  655. KEY `comment_field__uid__target_id` (`uid`),
  656. KEY `comment_field__created` (`created`),
  657. KEY `comment__status_comment_type` (`status`,`comment_type`,`cid`),
  658. KEY `comment__status_pid` (`pid`,`status`),
  659. KEY `comment__num_new` (`entity_id`,`entity_type`,`comment_type`,`status`,`created`,`cid`,`thread`(191)),
  660. KEY `comment__entity_langcode` (`entity_id`,`entity_type`,`comment_type`,`default_langcode`)
  661. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The data table for comment entities.';
  662. /*!40101 SET character_set_client = @saved_cs_client */;
  663. --
  664. -- Dumping data for table `comment_field_data`
  665. --
  666. LOCK TABLES `comment_field_data` WRITE;
  667. /*!40000 ALTER TABLE `comment_field_data` DISABLE KEYS */;
  668. /*!40000 ALTER TABLE `comment_field_data` ENABLE KEYS */;
  669. UNLOCK TABLES;
  670. --
  671. -- Table structure for table `config`
  672. --
  673. DROP TABLE IF EXISTS `config`;
  674. /*!40101 SET @saved_cs_client = @@character_set_client */;
  675. /*!40101 SET character_set_client = utf8 */;
  676. CREATE TABLE `config` (
  677. `collection` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'Primary Key: Config object collection.',
  678. `name` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'Primary Key: Config object name.',
  679. `data` longblob COMMENT 'A serialized configuration object data.',
  680. PRIMARY KEY (`collection`,`name`)
  681. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for configuration data.';
  682. /*!40101 SET character_set_client = @saved_cs_client */;
  683. --
  684. -- Dumping data for table `config`
  685. --
  686. LOCK TABLES `config` WRITE;
  687. /*!40000 ALTER TABLE `config` DISABLE KEYS */;
  688. INSERT INTO `config` VALUES ('','automated_cron.settings','a:2:{s:8:\"interval\";i:10800;s:5:\"_core\";a:1:{s:19:\"default_config_hash\";s:43:\"fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs\";}}'),('','block.block.bartik_account_menu','a:13:{s:4:\"uuid\";s:36:\"a55019e7-f1fa-4fea-b196-94831c453e1d\";s:8:\"langcode\";s:2:\"en\";s:6:\"status\";b:1;s:12:\"dependencies\";a:3:{s:6:\"config\";a:1:{i:0;s:19:\"system.menu.account\";}s:6:\"module\";a:1:{i:0;s:6:\"system\";}s:5:\"theme\";a:1:{i:0;s:6:\"bartik\";}}s:5:\"_core\";a:1:{s:19:\"default_config_hash\";s:43:\"8a31Ywc1t2zlddGd3bmDrFMefWqgSK2E02ceFdr-bfc\";}s:2:\"id\";s:19:\"bartik_account_menu\";s:5:\"theme\";s:6:\"bartik\";s:6:\"region\";s:14:\"secondary_menu\";s:6:\"weight\";i:0;s:8:\"provider\";N;s:6:\"plugin\";s:25:\"system_menu_block:account\";s:8:\"settings\";a:7:{s:2:\"id\";s:25:\"system_menu_block:account\";s:5:\"label\";s:17:\"User account menu\";s:8:\"provider\";s:6:\"system\";s:13:\"label_display\";s:1:\"0\";s:5:\"level\";i:1;s:5:\"depth\";i:1;s:16:\"expand_all_items\";b:0;}s:10:\"visibility\";a:0:{}}'),('','block.block.bartik_branding','a:13:{s:4:\"uuid\";s:36:\"5bd69467-8b67-4647-bd97-5adf7146df99\";s:8:\"langcode\";s:2:\"en\";s:6:\"status\";b:1;s:12:\"dependencies\";a:2:{s:6:\"module\";a:1:{i:0;s:6:\"system\";}s:5:\"theme\";a:1:{i:0;s:6:\"bartik\";}}s:5:\"_core\";a:1:{s:19:\"default_config_hash\";s:43:\"NDwadleLD3YVSbDUaakxyYZyINYtkFtOVGShfq4kWy8\";}s:2:\"id\";s:15:\"bartik_branding\";s:5:\"theme\";s:6:\"bartik\";s:6:\"region\";s:6:\"header\";s:6:\"weight\";i:0;s:8:\"provider\";N;s:6:\"plugin\";s:21:\"system_branding_block\";s:8:\"settings\";a:7:{s:2:\"id\";s:21:\"system_branding_block\";s:5:\"label\";s:13:\"Site branding\";s:8:\"provider\";s:6:\"system\";s:13:\"label_display\";s:1:\"0\";s:13:\"use_site_logo\";b:1;s:13:\"use_site_name\";b:1;s:15:\"use_site_slogan\";b:1;}s:10:\"visibility\";a:0:{}}'),('','block.block.bartik_breadcrumbs','a:13:{s:4:\"uuid\";s:36:\"f5e81474-0524-4463-8366-259341c7e4ee\";s:8:\"langcode\";s:2:\"en\";s:6:\"status\";b:1;s:12:\"dependencies\";a:2:{s:6:\"module\";a:1:{i:0;s:6:\"system\";}s:5:\"theme\";a:1:{i:0;s:6:\"bartik\";}}s:5:\"_core\";a:1:{s:19:\"default_config_hash\";s:43:\"oXUb3JZR2WW5VOdw4HrhRicCsq51mCgLfRyvheG68ck\";}s:2:\"id\";s:18:\"bartik_breadcrumbs\";s:5:\"theme\";s:6:\"bartik\";s:6:\"region\";s:10:\"breadcrumb\";s:6:\"weight\";i:0;s:8:\"provider\";N;s:6:\"plugin\";s:23:\"system_breadcrumb_block\";s:8:\"settings\";a:4:{s:2:\"id\";s:23:\"system_breadcrumb_block\";s:5:\"label\";s:11:\"Breadcrumbs\";s:8:\"provider\";s:6:\"system\";s:13:\"label_display\";s:1:\"0\";}s:10:\"visibility\";a:0:{}}'),('','block.block.bartik_content','a:13:{s:4:\"uuid\";s:36:\"808e8129-19d2-471f-baf1-92e4d017aa59\";s:8:\"langcode\";s:2:\"en\";s:6:\"status\";b:1;s:12:\"dependencies\";a:2:{s:6:\"module\";a:1:{i:0;s:6:\"system\";}s:5:\"theme\";a:1:{i:0;s:6:\"bartik\";}}s:5:\"_core\";a:1:{s:19:\"default_config_hash\";s:43:\"9EoWV2Lot6FVSr50t4hoKgiz1LIXYWNG-IIPYsWxBqo\";}s:2:\"id\";s:14:\"bartik_content\";s:5:\"theme\";s:6:\"bartik\";s:6:\"region\";s:7:\"content\";s:6:\"weight\";i:0;s:8:\"provider\";N;s:6:\"plugin\";s:17:\"system_main_block\";s:8:\"settings\";a:4:{s:2:\"id\";s:17:\"system_main_block\";s:5:\"label\";s:17:\"Main page content\";s:8:\"provider\";s:6:\"system\";s:13:\"label_display\";s:1:\"0\";}s:10:\"visibility\";a:0:{}}'),('','block.block.bartik_footer','a:13:{s:4:\"uuid\";s:36:\"2be449b4-ec78-4d82-ba39-6bcebb4b96ec\";s:8:\"langcode\";s:2:\"en\";s:6:\"status\";b:1;s:12:\"dependencies\";a:3:{s:6:\"config\";a:1:{i:0;s:18:\"system.menu.footer\";}s:6:\"module\";a:1:{i:0;s:6:\"system\";}s:5:\"theme\";a:1:{i:0;s:6:\"bartik\";}}s:5:\"_core\";a:1:{s:19:\"default_config_hash\";s:43:\"8zRjTNbfNAJ94lQpZDu6MkyD87GYJ2zpH9VQPVmRbcM\";}s:2:\"id\";s:13:\"bartik_footer\";s:5:\"theme\";s:6:\"bartik\";s:6:\"region\";s:12:\"footer_fifth\";s:6:\"weight\";i:0;s:8:\"provider\";N;s:6:\"plugin\";s:24:\"system_menu_block:footer\";s:8:\"settings\";a:7:{s:2:\"id\";s:24:\"system_menu_block:footer\";s:5:\"label\";s:11:\"Footer menu\";s:8:\"provider\";s:6:\"system\";s:13
  689. /*!40000 ALTER TABLE `config` ENABLE KEYS */;
  690. UNLOCK TABLES;
  691. --
  692. -- Table structure for table `file_managed`
  693. --
  694. DROP TABLE IF EXISTS `file_managed`;
  695. /*!40101 SET @saved_cs_client = @@character_set_client */;
  696. /*!40101 SET character_set_client = utf8 */;
  697. CREATE TABLE `file_managed` (
  698. `fid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  699. `uuid` varchar(128) CHARACTER SET ascii NOT NULL,
  700. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  701. `uid` int(10) unsigned DEFAULT NULL COMMENT 'The ID of the target entity.',
  702. `filename` varchar(255) DEFAULT NULL,
  703. `uri` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  704. `filemime` varchar(255) CHARACTER SET ascii DEFAULT NULL,
  705. `filesize` bigint(20) unsigned DEFAULT NULL,
  706. `status` tinyint(4) NOT NULL,
  707. `created` int(11) DEFAULT NULL,
  708. `changed` int(11) NOT NULL,
  709. PRIMARY KEY (`fid`),
  710. UNIQUE KEY `file_field__uuid__value` (`uuid`),
  711. KEY `file_field__uid__target_id` (`uid`),
  712. KEY `file_field__uri` (`uri`(191)),
  713. KEY `file_field__status` (`status`),
  714. KEY `file_field__changed` (`changed`)
  715. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for file entities.';
  716. /*!40101 SET character_set_client = @saved_cs_client */;
  717. --
  718. -- Dumping data for table `file_managed`
  719. --
  720. LOCK TABLES `file_managed` WRITE;
  721. /*!40000 ALTER TABLE `file_managed` DISABLE KEYS */;
  722. /*!40000 ALTER TABLE `file_managed` ENABLE KEYS */;
  723. UNLOCK TABLES;
  724. --
  725. -- Table structure for table `file_usage`
  726. --
  727. DROP TABLE IF EXISTS `file_usage`;
  728. /*!40101 SET @saved_cs_client = @@character_set_client */;
  729. /*!40101 SET character_set_client = utf8 */;
  730. CREATE TABLE `file_usage` (
  731. `fid` int(10) unsigned NOT NULL COMMENT 'File ID.',
  732. `module` varchar(50) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The name of the module that is using the file.',
  733. `type` varchar(64) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The name of the object type in which the file is used.',
  734. `id` varchar(64) CHARACTER SET ascii NOT NULL DEFAULT '0' COMMENT 'The primary key of the object using the file.',
  735. `count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The number of times this file is used by this object.',
  736. PRIMARY KEY (`fid`,`type`,`id`,`module`),
  737. KEY `type_id` (`type`,`id`),
  738. KEY `fid_count` (`fid`,`count`),
  739. KEY `fid_module` (`fid`,`module`)
  740. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Track where a file is used.';
  741. /*!40101 SET character_set_client = @saved_cs_client */;
  742. --
  743. -- Dumping data for table `file_usage`
  744. --
  745. LOCK TABLES `file_usage` WRITE;
  746. /*!40000 ALTER TABLE `file_usage` DISABLE KEYS */;
  747. /*!40000 ALTER TABLE `file_usage` ENABLE KEYS */;
  748. UNLOCK TABLES;
  749. --
  750. -- Table structure for table `history`
  751. --
  752. DROP TABLE IF EXISTS `history`;
  753. /*!40101 SET @saved_cs_client = @@character_set_client */;
  754. /*!40101 SET character_set_client = utf8 */;
  755. CREATE TABLE `history` (
  756. `uid` int(11) NOT NULL DEFAULT '0' COMMENT 'The users.uid that read the node nid.',
  757. `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid that was read.',
  758. `timestamp` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp at which the read occurred.',
  759. PRIMARY KEY (`uid`,`nid`),
  760. KEY `nid` (`nid`)
  761. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='A record of which users have read which nodes.';
  762. /*!40101 SET character_set_client = @saved_cs_client */;
  763. --
  764. -- Dumping data for table `history`
  765. --
  766. LOCK TABLES `history` WRITE;
  767. /*!40000 ALTER TABLE `history` DISABLE KEYS */;
  768. /*!40000 ALTER TABLE `history` ENABLE KEYS */;
  769. UNLOCK TABLES;
  770. --
  771. -- Table structure for table `key_value`
  772. --
  773. DROP TABLE IF EXISTS `key_value`;
  774. /*!40101 SET @saved_cs_client = @@character_set_client */;
  775. /*!40101 SET character_set_client = utf8 */;
  776. CREATE TABLE `key_value` (
  777. `collection` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'A named collection of key and value pairs.',
  778. `name` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The key of the key-value pair. As KEY is a SQL reserved keyword, name was chosen instead.',
  779. `value` longblob NOT NULL COMMENT 'The value.',
  780. PRIMARY KEY (`collection`,`name`)
  781. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Generic key-value storage table. See the state system for…';
  782. /*!40101 SET character_set_client = @saved_cs_client */;
  783. --
  784. -- Dumping data for table `key_value`
  785. --
  786. LOCK TABLES `key_value` WRITE;
  787. /*!40000 ALTER TABLE `key_value` DISABLE KEYS */;
  788. INSERT INTO `key_value` VALUES ('config.entity.key_store.action','uuid:17b5df07-fee5-43d3-a1d2-50498798cf2e','a:1:{i:0;s:37:\"system.action.node_make_sticky_action\";}'),('config.entity.key_store.action','uuid:2524579e-2952-41b0-8cef-3b3a7fbc7c06','a:1:{i:0;s:33:\"system.action.comment_save_action\";}'),('config.entity.key_store.action','uuid:25bffcf1-51dd-4e4f-8445-0b87ad7abdd3','a:1:{i:0;s:37:\"system.action.user_cancel_user_action\";}'),('config.entity.key_store.action','uuid:28582a0f-4799-4aa6-892e-3eb4563d4185','a:1:{i:0;s:32:\"system.action.node_delete_action\";}'),('config.entity.key_store.action','uuid:321255a0-ed0b-405e-8f8f-e2a2915c1a7c','a:1:{i:0;s:48:\"system.action.user_add_role_action.administrator\";}'),('config.entity.key_store.action','uuid:447bcde1-c50f-4dcc-b2ab-5cd2a4821111','a:1:{i:0;s:36:\"system.action.user_block_user_action\";}'),('config.entity.key_store.action','uuid:4523239b-f796-4bf9-827d-3fdde0bc5b9d','a:1:{i:0;s:33:\"system.action.node_promote_action\";}'),('config.entity.key_store.action','uuid:546b143c-a82e-4a4c-a202-0d8d4e7aea1e','a:1:{i:0;s:33:\"system.action.node_publish_action\";}'),('config.entity.key_store.action','uuid:854ad6af-97f6-41ce-bc08-21307b4f4887','a:1:{i:0;s:38:\"system.action.comment_unpublish_action\";}'),('config.entity.key_store.action','uuid:8b12a001-b469-424b-b2c4-3ed21f292c21','a:1:{i:0;s:30:\"system.action.node_save_action\";}'),('config.entity.key_store.action','uuid:8dc42656-4c91-4fc4-bf71-30755d15911f','a:1:{i:0;s:35:\"system.action.comment_delete_action\";}'),('config.entity.key_store.action','uuid:b6f7028a-d091-496f-bfaa-7b2f36a49432','a:1:{i:0;s:35:\"system.action.node_unpublish_action\";}'),('config.entity.key_store.action','uuid:d98e76a1-a07a-4d4b-a9ca-d247d94283f8','a:1:{i:0;s:39:\"system.action.node_make_unsticky_action\";}'),('config.entity.key_store.action','uuid:e3775caf-72f0-4773-8ea3-d34fbc408b40','a:1:{i:0;s:35:\"system.action.node_unpromote_action\";}'),('config.entity.key_store.action','uuid:e6c989cc-3910-4b36-9380-bd0a28119e70','a:1:{i:0;s:36:\"system.action.comment_publish_action\";}'),('config.entity.key_store.action','uuid:f0b60cfa-0f48-4d71-8f93-7662becc10c2','a:1:{i:0;s:38:\"system.action.user_unblock_user_action\";}'),('config.entity.key_store.action','uuid:fc29640e-61ab-4776-9b30-85537e0e7d86','a:1:{i:0;s:51:\"system.action.user_remove_role_action.administrator\";}'),('config.entity.key_store.base_field_override','uuid:111e8491-3b26-4897-9dbd-f1a11c1b9e83','a:1:{i:0;s:42:\"core.base_field_override.node.page.promote\";}'),('config.entity.key_store.block','theme:bartik','a:14:{i:0;s:32:\"block.block.bartik_local_actions\";i:1;s:30:\"block.block.bartik_local_tasks\";i:2;s:29:\"block.block.bartik_page_title\";i:3;s:23:\"block.block.bartik_help\";i:4;s:25:\"block.block.bartik_search\";i:5;s:26:\"block.block.bartik_powered\";i:6;s:27:\"block.block.bartik_messages\";i:7;s:26:\"block.block.bartik_content\";i:8;s:30:\"block.block.bartik_breadcrumbs\";i:9;s:27:\"block.block.bartik_branding\";i:10;s:31:\"block.block.bartik_account_menu\";i:11;s:25:\"block.block.bartik_footer\";i:12;s:28:\"block.block.bartik_main_menu\";i:13;s:24:\"block.block.bartik_tools\";}'),('config.entity.key_store.block','theme:claro','a:8:{i:0;s:31:\"block.block.claro_local_actions\";i:1;s:28:\"block.block.claro_page_title\";i:2;s:37:\"block.block.claro_primary_local_tasks\";i:3;s:39:\"block.block.claro_secondary_local_tasks\";i:4;s:22:\"block.block.claro_help\";i:5;s:29:\"block.block.claro_breadcrumbs\";i:6;s:25:\"block.block.claro_content\";i:7;s:26:\"block.block.claro_messages\";}'),('config.entity.key_store.block','theme:seven','a:8:{i:0;s:39:\"block.block.seven_secondary_local_tasks\";i:1;s:37:\"block.block.seven_primary_local_tasks\";i:2;s:28:\"block.block.seven_page_title\";i:3;s:31:\"block.block.seven_local_actions\";i:4;s:22:\"block.block.seven_help\";i:5;s:26:\"block.block.seven_messages\";i:6;s:25:\"block.block.seven_content\";i:7;s:29:\"block.block.seven_breadcrumbs\";}'),('config.entity.key_store.block','theme:vue_js','a:16:{i:0;s:31:\"block.block.vue_js_account_
  789. /*!40000 ALTER TABLE `key_value` ENABLE KEYS */;
  790. UNLOCK TABLES;
  791. --
  792. -- Table structure for table `key_value_expire`
  793. --
  794. DROP TABLE IF EXISTS `key_value_expire`;
  795. /*!40101 SET @saved_cs_client = @@character_set_client */;
  796. /*!40101 SET character_set_client = utf8 */;
  797. CREATE TABLE `key_value_expire` (
  798. `collection` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'A named collection of key and value pairs.',
  799. `name` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The key of the key/value pair.',
  800. `value` longblob NOT NULL COMMENT 'The value of the key/value pair.',
  801. `expire` int(11) NOT NULL DEFAULT '2147483647' COMMENT 'The time since Unix epoch in seconds when this item expires. Defaults to the maximum possible time.',
  802. PRIMARY KEY (`collection`,`name`),
  803. KEY `all` (`name`,`collection`,`expire`),
  804. KEY `expire` (`expire`)
  805. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Generic key/value storage table with an expiration.';
  806. /*!40101 SET character_set_client = @saved_cs_client */;
  807. --
  808. -- Dumping data for table `key_value_expire`
  809. --
  810. LOCK TABLES `key_value_expire` WRITE;
  811. /*!40000 ALTER TABLE `key_value_expire` DISABLE KEYS */;
  812. INSERT INTO `key_value_expire` VALUES ('update','update_project_data','a:2:{s:6:\"drupal\";a:14:{s:4:\"name\";s:6:\"drupal\";s:4:\"info\";a:6:{s:4:\"name\";s:14:\"Automated Cron\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:5:\"8.8.0\";s:7:\"project\";s:6:\"drupal\";s:16:\"_info_file_ctime\";i:1576040601;s:9:\"datestamp\";i:0;}s:9:\"datestamp\";i:0;s:8:\"includes\";a:43:{s:14:\"automated_cron\";s:14:\"Automated Cron\";s:8:\"big_pipe\";s:7:\"BigPipe\";s:5:\"block\";s:5:\"Block\";s:13:\"block_content\";s:12:\"Custom Block\";s:10:\"breakpoint\";s:10:\"Breakpoint\";s:8:\"ckeditor\";s:8:\"CKEditor\";s:5:\"color\";s:5:\"Color\";s:7:\"comment\";s:7:\"Comment\";s:6:\"config\";s:21:\"Configuration Manager\";s:7:\"contact\";s:7:\"Contact\";s:10:\"contextual\";s:16:\"Contextual Links\";s:8:\"datetime\";s:8:\"Datetime\";s:5:\"dblog\";s:16:\"Database Logging\";s:18:\"dynamic_page_cache\";s:27:\"Internal Dynamic Page Cache\";s:6:\"editor\";s:11:\"Text Editor\";s:5:\"field\";s:5:\"Field\";s:8:\"field_ui\";s:8:\"Field UI\";s:4:\"file\";s:4:\"File\";s:6:\"filter\";s:6:\"Filter\";s:4:\"help\";s:4:\"Help\";s:7:\"history\";s:7:\"History\";s:5:\"image\";s:5:\"Image\";s:4:\"link\";s:4:\"Link\";s:17:\"menu_link_content\";s:17:\"Custom Menu Links\";s:7:\"menu_ui\";s:7:\"Menu UI\";s:4:\"node\";s:4:\"Node\";s:7:\"options\";s:7:\"Options\";s:10:\"page_cache\";s:19:\"Internal Page Cache\";s:4:\"path\";s:4:\"Path\";s:10:\"path_alias\";s:10:\"Path alias\";s:9:\"quickedit\";s:10:\"Quick Edit\";s:3:\"rdf\";s:3:\"RDF\";s:6:\"search\";s:6:\"Search\";s:8:\"shortcut\";s:8:\"Shortcut\";s:6:\"system\";s:6:\"System\";s:8:\"taxonomy\";s:8:\"Taxonomy\";s:4:\"text\";s:4:\"Text\";s:7:\"toolbar\";s:7:\"Toolbar\";s:4:\"tour\";s:4:\"Tour\";s:6:\"update\";s:14:\"Update Manager\";s:4:\"user\";s:4:\"User\";s:5:\"views\";s:5:\"Views\";s:8:\"views_ui\";s:8:\"Views UI\";}s:12:\"project_type\";s:4:\"core\";s:14:\"project_status\";b:1;s:16:\"existing_version\";s:5:\"8.8.0\";s:14:\"existing_major\";s:1:\"8\";s:12:\"install_type\";s:8:\"official\";s:5:\"title\";s:11:\"Drupal core\";s:4:\"link\";s:37:\"https://www.drupal.org/project/drupal\";s:6:\"status\";i:-4;s:6:\"reason\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:24:\"No available update data\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}s:12:\"fetch_status\";i:-4;}s:10:\"components\";a:11:{s:4:\"name\";s:10:\"components\";s:4:\"info\";a:6:{s:4:\"name\";s:19:\"Component Libraries\";s:7:\"version\";s:7:\"8.x-1.1\";s:7:\"project\";s:10:\"components\";s:9:\"datestamp\";i:1556870888;s:7:\"package\";s:5:\"Other\";s:16:\"_info_file_ctime\";i:1576030872;}s:9:\"datestamp\";i:1556870888;s:8:\"includes\";a:1:{s:10:\"components\";s:19:\"Component Libraries\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;s:16:\"existing_version\";s:7:\"8.x-1.1\";s:14:\"existing_major\";s:1:\"1\";s:12:\"install_type\";s:8:\"official\";s:6:\"status\";i:-2;s:6:\"reason\";O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:27:\"No available releases found\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}}}',1576045283),('update','update_project_projects','a:2:{s:6:\"drupal\";a:6:{s:4:\"name\";s:6:\"drupal\";s:4:\"info\";a:6:{s:4:\"name\";s:14:\"Automated Cron\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:5:\"8.8.0\";s:7:\"project\";s:6:\"drupal\";s:16:\"_info_file_ctime\";i:1576040601;s:9:\"datestamp\";i:0;}s:9:\"datestamp\";i:0;s:8:\"includes\";a:43:{s:14:\"automated_cron\";s:14:\"Automated Cron\";s:8:\"big_pipe\";s:7:\"BigPipe\";s:5:\"block\";s:5:\"Block\";s:13:\"block_content\";s:12:\"Custom Block\";s:10:\"breakpoint\";s:10:\"Breakpoint\";s:8:\"ckeditor\";s:8:\"CKEditor\";s:5:\"color\";s:5:\"Color\";s:7:\"comment\";s:7:\"Comment\";s:6:\"config\";s:21:\"Configuration Manager\";s:7:\"contact\";s:7:\"Contact\";s:10:\"contextual\";s:16:\"Contextual Links\";s:8:\"datetime\";s:8:\"Datetime\";s:5:\"dblog\";s:16:\"Database Logging\";s:18:\"dynamic_page_cache\";s:27:\"Internal Dynamic Page Cache\";s:6:\"editor\";s:11:\"Text Editor\
  813. /*!40000 ALTER TABLE `key_value_expire` ENABLE KEYS */;
  814. UNLOCK TABLES;
  815. --
  816. -- Table structure for table `menu_link_content`
  817. --
  818. DROP TABLE IF EXISTS `menu_link_content`;
  819. /*!40101 SET @saved_cs_client = @@character_set_client */;
  820. /*!40101 SET character_set_client = utf8 */;
  821. CREATE TABLE `menu_link_content` (
  822. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  823. `revision_id` int(10) unsigned DEFAULT NULL,
  824. `bundle` varchar(32) CHARACTER SET ascii NOT NULL,
  825. `uuid` varchar(128) CHARACTER SET ascii NOT NULL,
  826. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  827. PRIMARY KEY (`id`),
  828. UNIQUE KEY `menu_link_content_field__uuid__value` (`uuid`),
  829. UNIQUE KEY `menu_link_content__revision_id` (`revision_id`)
  830. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for menu_link_content entities.';
  831. /*!40101 SET character_set_client = @saved_cs_client */;
  832. --
  833. -- Dumping data for table `menu_link_content`
  834. --
  835. LOCK TABLES `menu_link_content` WRITE;
  836. /*!40000 ALTER TABLE `menu_link_content` DISABLE KEYS */;
  837. /*!40000 ALTER TABLE `menu_link_content` ENABLE KEYS */;
  838. UNLOCK TABLES;
  839. --
  840. -- Table structure for table `menu_link_content_data`
  841. --
  842. DROP TABLE IF EXISTS `menu_link_content_data`;
  843. /*!40101 SET @saved_cs_client = @@character_set_client */;
  844. /*!40101 SET character_set_client = utf8 */;
  845. CREATE TABLE `menu_link_content_data` (
  846. `id` int(10) unsigned NOT NULL,
  847. `revision_id` int(10) unsigned NOT NULL,
  848. `bundle` varchar(32) CHARACTER SET ascii NOT NULL,
  849. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  850. `enabled` tinyint(4) NOT NULL,
  851. `title` varchar(255) DEFAULT NULL,
  852. `description` varchar(255) DEFAULT NULL,
  853. `menu_name` varchar(255) CHARACTER SET ascii DEFAULT NULL,
  854. `link__uri` varchar(2048) DEFAULT NULL COMMENT 'The URI of the link.',
  855. `link__title` varchar(255) DEFAULT NULL COMMENT 'The link text.',
  856. `link__options` longblob COMMENT 'Serialized array of options for the link.',
  857. `external` tinyint(4) DEFAULT NULL,
  858. `rediscover` tinyint(4) DEFAULT NULL,
  859. `weight` int(11) DEFAULT NULL,
  860. `expanded` tinyint(4) DEFAULT NULL,
  861. `parent` varchar(255) DEFAULT NULL,
  862. `changed` int(11) DEFAULT NULL,
  863. `default_langcode` tinyint(4) NOT NULL,
  864. `revision_translation_affected` tinyint(4) DEFAULT NULL,
  865. PRIMARY KEY (`id`,`langcode`),
  866. KEY `menu_link_content__id__default_langcode__langcode` (`id`,`default_langcode`,`langcode`),
  867. KEY `menu_link_content__revision_id` (`revision_id`),
  868. KEY `menu_link_content_field__link__uri` (`link__uri`(30)),
  869. KEY `menu_link_content__enabled_bundle` (`enabled`,`bundle`,`id`)
  870. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The data table for menu_link_content entities.';
  871. /*!40101 SET character_set_client = @saved_cs_client */;
  872. --
  873. -- Dumping data for table `menu_link_content_data`
  874. --
  875. LOCK TABLES `menu_link_content_data` WRITE;
  876. /*!40000 ALTER TABLE `menu_link_content_data` DISABLE KEYS */;
  877. /*!40000 ALTER TABLE `menu_link_content_data` ENABLE KEYS */;
  878. UNLOCK TABLES;
  879. --
  880. -- Table structure for table `menu_link_content_field_revision`
  881. --
  882. DROP TABLE IF EXISTS `menu_link_content_field_revision`;
  883. /*!40101 SET @saved_cs_client = @@character_set_client */;
  884. /*!40101 SET character_set_client = utf8 */;
  885. CREATE TABLE `menu_link_content_field_revision` (
  886. `id` int(10) unsigned NOT NULL,
  887. `revision_id` int(10) unsigned NOT NULL,
  888. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  889. `enabled` tinyint(4) NOT NULL,
  890. `title` varchar(255) DEFAULT NULL,
  891. `description` varchar(255) DEFAULT NULL,
  892. `link__uri` varchar(2048) DEFAULT NULL COMMENT 'The URI of the link.',
  893. `link__title` varchar(255) DEFAULT NULL COMMENT 'The link text.',
  894. `link__options` longblob COMMENT 'Serialized array of options for the link.',
  895. `external` tinyint(4) DEFAULT NULL,
  896. `changed` int(11) DEFAULT NULL,
  897. `default_langcode` tinyint(4) NOT NULL,
  898. `revision_translation_affected` tinyint(4) DEFAULT NULL,
  899. PRIMARY KEY (`revision_id`,`langcode`),
  900. KEY `menu_link_content__id__default_langcode__langcode` (`id`,`default_langcode`,`langcode`),
  901. KEY `menu_link_content_field__link__uri` (`link__uri`(30))
  902. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision data table for menu_link_content entities.';
  903. /*!40101 SET character_set_client = @saved_cs_client */;
  904. --
  905. -- Dumping data for table `menu_link_content_field_revision`
  906. --
  907. LOCK TABLES `menu_link_content_field_revision` WRITE;
  908. /*!40000 ALTER TABLE `menu_link_content_field_revision` DISABLE KEYS */;
  909. /*!40000 ALTER TABLE `menu_link_content_field_revision` ENABLE KEYS */;
  910. UNLOCK TABLES;
  911. --
  912. -- Table structure for table `menu_link_content_revision`
  913. --
  914. DROP TABLE IF EXISTS `menu_link_content_revision`;
  915. /*!40101 SET @saved_cs_client = @@character_set_client */;
  916. /*!40101 SET character_set_client = utf8 */;
  917. CREATE TABLE `menu_link_content_revision` (
  918. `id` int(10) unsigned NOT NULL,
  919. `revision_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  920. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  921. `revision_user` int(10) unsigned DEFAULT NULL COMMENT 'The ID of the target entity.',
  922. `revision_created` int(11) DEFAULT NULL,
  923. `revision_log_message` longtext,
  924. `revision_default` tinyint(4) DEFAULT NULL,
  925. PRIMARY KEY (`revision_id`),
  926. KEY `menu_link_content__id` (`id`),
  927. KEY `menu_link_content__ef029a1897` (`revision_user`)
  928. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision table for menu_link_content entities.';
  929. /*!40101 SET character_set_client = @saved_cs_client */;
  930. --
  931. -- Dumping data for table `menu_link_content_revision`
  932. --
  933. LOCK TABLES `menu_link_content_revision` WRITE;
  934. /*!40000 ALTER TABLE `menu_link_content_revision` DISABLE KEYS */;
  935. /*!40000 ALTER TABLE `menu_link_content_revision` ENABLE KEYS */;
  936. UNLOCK TABLES;
  937. --
  938. -- Table structure for table `menu_tree`
  939. --
  940. DROP TABLE IF EXISTS `menu_tree`;
  941. /*!40101 SET @saved_cs_client = @@character_set_client */;
  942. /*!40101 SET character_set_client = utf8 */;
  943. CREATE TABLE `menu_tree` (
  944. `menu_name` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The menu name. All links with the same menu name (such as ''tools'') are part of the same menu.',
  945. `mlid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The menu link ID (mlid) is the integer primary key.',
  946. `id` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'Unique machine name: the plugin ID.',
  947. `parent` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The plugin ID for the parent of this link.',
  948. `route_name` varchar(255) CHARACTER SET ascii DEFAULT NULL COMMENT 'The machine name of a defined Symfony Route this menu item represents.',
  949. `route_param_key` varchar(255) DEFAULT NULL COMMENT 'An encoded string of route parameters for loading by route.',
  950. `route_parameters` longblob COMMENT 'Serialized array of route parameters of this menu link.',
  951. `url` varchar(255) NOT NULL DEFAULT '' COMMENT 'The external path this link points to (when not using a route).',
  952. `title` longblob COMMENT 'The serialized title for the link. May be a TranslatableMarkup.',
  953. `description` longblob COMMENT 'The serialized description of this link - used for admin pages and title attribute. May be a TranslatableMarkup.',
  954. `class` text COMMENT 'The class for this link plugin.',
  955. `options` longblob COMMENT 'A serialized array of URL options, such as a query string or HTML attributes.',
  956. `provider` varchar(50) CHARACTER SET ascii NOT NULL DEFAULT 'system' COMMENT 'The name of the module that generated this link.',
  957. `enabled` smallint(6) NOT NULL DEFAULT '1' COMMENT 'A flag for whether the link should be rendered in menus. (0 = a disabled menu item that may be shown on admin screens, 1 = a normal, visible link)',
  958. `discovered` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag for whether the link was discovered, so can be purged on rebuild',
  959. `expanded` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Flag for whether this link should be rendered as expanded in menus - expanded links always have their child links displayed, instead of only when the link is in the active trail (1 = expanded, 0 = not expanded)',
  960. `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'Link weight among links in the same menu at the same depth.',
  961. `metadata` longblob COMMENT 'A serialized array of data that may be used by the plugin instance.',
  962. `has_children` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Flag indicating whether any enabled links have this link as a parent (1 = enabled children exist, 0 = no enabled children).',
  963. `depth` smallint(6) NOT NULL DEFAULT '0' COMMENT 'The depth relative to the top level. A link with empty parent will have depth == 1.',
  964. `p1` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The first mlid in the materialized path. If N = depth, then pN must equal the mlid. If depth > 1 then p(N-1) must equal the parent link mlid. All pX where X > depth must equal zero. The columns p1 .. p9 are also called the parents.',
  965. `p2` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The second mlid in the materialized path. See p1.',
  966. `p3` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The third mlid in the materialized path. See p1.',
  967. `p4` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The fourth mlid in the materialized path. See p1.',
  968. `p5` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The fifth mlid in the materialized path. See p1.',
  969. `p6` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The sixth mlid in the materialized path. See p1.',
  970. `p7` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The seventh mlid in the materialized path. See p1.',
  971. `p8` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The eighth mlid in the materialized path. See p1.',
  972. `p9` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The ninth mlid in the materialized path. See p1.',
  973. `form_class` varchar(255) DEFAULT NULL COMMENT 'meh',
  974. PRIMARY KEY (`mlid`),
  975. UNIQUE KEY `id` (`id`),
  976. KEY `menu_parents` (`menu_name`,`p1`,`p2`,`p3`,`p4`,`p5`,`p6`,`p7`,`p8`,`p9`),
  977. KEY `menu_parent_expand_child` (`menu_name`,`expanded`,`has_children`,`parent`(16)),
  978. KEY `route_values` (`route_name`(32),`route_param_key`(16))
  979. ) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 COMMENT='Contains the menu tree hierarchy.';
  980. /*!40101 SET character_set_client = @saved_cs_client */;
  981. --
  982. -- Dumping data for table `menu_tree`
  983. --
  984. LOCK TABLES `menu_tree` WRITE;
  985. /*!40000 ALTER TABLE `menu_tree` DISABLE KEYS */;
  986. INSERT INTO `menu_tree` VALUES ('admin',1,'system.admin','','system.admin','','a:0:{}','','O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:14:\"Administration\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}','s:0:\"\";','Drupal\\Core\\Menu\\MenuLinkDefault','a:0:{}','system',1,1,0,9,'a:0:{}',1,1,1,0,0,0,0,0,0,0,0,'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'),('admin',2,'system.admin_content','system.admin','system.admin_content','','a:0:{}','','O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:7:\"Content\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}','O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:24:\"Find and manage content.\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}','Drupal\\Core\\Menu\\MenuLinkDefault','a:0:{}','system',1,1,0,-10,'a:0:{}',1,2,1,2,0,0,0,0,0,0,0,'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'),('admin',3,'system.admin_structure','system.admin','system.admin_structure','','a:0:{}','','O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:9:\"Structure\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}','O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:45:\"Administer blocks, content types, menus, etc.\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}','Drupal\\Core\\Menu\\MenuLinkDefault','a:0:{}','system',1,1,0,-8,'a:0:{}',1,2,1,3,0,0,0,0,0,0,0,'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'),('admin',4,'system.themes_page','system.admin','system.themes_page','','a:0:{}','','O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:10:\"Appearance\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}','O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:28:\"Select and configure themes.\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}','Drupal\\Core\\Menu\\MenuLinkDefault','a:0:{}','system',1,1,0,-6,'a:0:{}',0,2,1,4,0,0,0,0,0,0,0,'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'),('admin',5,'system.modules_list','system.admin','system.modules_list','','a:0:{}','','O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:6:\"Extend\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}','O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:52:\"Add and enable modules to extend site functionality.\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}','Drupal\\Core\\Menu\\MenuLinkDefault','a:0:{}','system',1,1,0,-2,'a:0:{}',0,2,1,5,0,0,0,0,0,0,0,'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'),('admin',6,'system.admin_config','system.admin','system.admin_config','','a:0:{}','','O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:13:\"Configuration\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}','O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:20:\"Administer settings.\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}','Drupal\\Core\\Menu\\MenuLinkDefault','a:0:{}','system',1,1,0,0,'a:0:{}',1,2,1,6,0,0,0,0,0,0,0,'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'),('admin',7,'system.admin_config_media','system.admin_config','system.admin_config_media','','a:0:{}','','O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:5:\"Media\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}','s:0:\"\";','Drupal\\Core\\Menu\\MenuLinkDefault','a:0:{}','system',1,1,0,-10,'a:0:{}',1,3,1,6,7,0,0,0,0,0,0,'Drupal\\Core\\Menu\\Form\\MenuLinkDefaultForm'),('admin',8,'system.file_system_settings','system.admin_config_media','system.file_system_settings','','a:0:{}','','O:48:\"Drupal\\Core\\StringTranslation\\TranslatableMarkup\":3:{s:9:\"\0*\0string\";s:11:\"File system\";s:12:\"\0*\0arguments\";a:0:{}s:10:\"\0*\0options\";a:0:{}}','O:48:\"Drupal\\Core\\StringTranslation\\Translat
  987. /*!40000 ALTER TABLE `menu_tree` ENABLE KEYS */;
  988. UNLOCK TABLES;
  989. --
  990. -- Table structure for table `node`
  991. --
  992. DROP TABLE IF EXISTS `node`;
  993. /*!40101 SET @saved_cs_client = @@character_set_client */;
  994. /*!40101 SET character_set_client = utf8 */;
  995. CREATE TABLE `node` (
  996. `nid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  997. `vid` int(10) unsigned DEFAULT NULL,
  998. `type` varchar(32) CHARACTER SET ascii NOT NULL COMMENT 'The ID of the target entity.',
  999. `uuid` varchar(128) CHARACTER SET ascii NOT NULL,
  1000. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  1001. PRIMARY KEY (`nid`),
  1002. UNIQUE KEY `node_field__uuid__value` (`uuid`),
  1003. UNIQUE KEY `node__vid` (`vid`),
  1004. KEY `node_field__type__target_id` (`type`)
  1005. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for node entities.';
  1006. /*!40101 SET character_set_client = @saved_cs_client */;
  1007. --
  1008. -- Dumping data for table `node`
  1009. --
  1010. LOCK TABLES `node` WRITE;
  1011. /*!40000 ALTER TABLE `node` DISABLE KEYS */;
  1012. /*!40000 ALTER TABLE `node` ENABLE KEYS */;
  1013. UNLOCK TABLES;
  1014. --
  1015. -- Table structure for table `node__body`
  1016. --
  1017. DROP TABLE IF EXISTS `node__body`;
  1018. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1019. /*!40101 SET character_set_client = utf8 */;
  1020. CREATE TABLE `node__body` (
  1021. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1022. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1023. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1024. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1025. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  1026. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1027. `body_value` longtext NOT NULL,
  1028. `body_summary` longtext,
  1029. `body_format` varchar(255) CHARACTER SET ascii DEFAULT NULL,
  1030. PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`),
  1031. KEY `bundle` (`bundle`),
  1032. KEY `revision_id` (`revision_id`),
  1033. KEY `body_format` (`body_format`)
  1034. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Data storage for node field body.';
  1035. /*!40101 SET character_set_client = @saved_cs_client */;
  1036. --
  1037. -- Dumping data for table `node__body`
  1038. --
  1039. LOCK TABLES `node__body` WRITE;
  1040. /*!40000 ALTER TABLE `node__body` DISABLE KEYS */;
  1041. /*!40000 ALTER TABLE `node__body` ENABLE KEYS */;
  1042. UNLOCK TABLES;
  1043. --
  1044. -- Table structure for table `node__comment`
  1045. --
  1046. DROP TABLE IF EXISTS `node__comment`;
  1047. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1048. /*!40101 SET character_set_client = utf8 */;
  1049. CREATE TABLE `node__comment` (
  1050. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1051. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1052. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1053. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1054. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  1055. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1056. `comment_status` int(11) NOT NULL DEFAULT '0' COMMENT 'Whether comments are allowed on this entity: 0 = no, 1 = closed (read only), 2 = open (read/write).',
  1057. PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`),
  1058. KEY `bundle` (`bundle`),
  1059. KEY `revision_id` (`revision_id`)
  1060. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Data storage for node field comment.';
  1061. /*!40101 SET character_set_client = @saved_cs_client */;
  1062. --
  1063. -- Dumping data for table `node__comment`
  1064. --
  1065. LOCK TABLES `node__comment` WRITE;
  1066. /*!40000 ALTER TABLE `node__comment` DISABLE KEYS */;
  1067. /*!40000 ALTER TABLE `node__comment` ENABLE KEYS */;
  1068. UNLOCK TABLES;
  1069. --
  1070. -- Table structure for table `node__field_image`
  1071. --
  1072. DROP TABLE IF EXISTS `node__field_image`;
  1073. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1074. /*!40101 SET character_set_client = utf8 */;
  1075. CREATE TABLE `node__field_image` (
  1076. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1077. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1078. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1079. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1080. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  1081. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1082. `field_image_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the file entity.',
  1083. `field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image''s ''alt'' attribute.',
  1084. `field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image''s ''title'' attribute.',
  1085. `field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
  1086. `field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
  1087. PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`),
  1088. KEY `bundle` (`bundle`),
  1089. KEY `revision_id` (`revision_id`),
  1090. KEY `field_image_target_id` (`field_image_target_id`)
  1091. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Data storage for node field field_image.';
  1092. /*!40101 SET character_set_client = @saved_cs_client */;
  1093. --
  1094. -- Dumping data for table `node__field_image`
  1095. --
  1096. LOCK TABLES `node__field_image` WRITE;
  1097. /*!40000 ALTER TABLE `node__field_image` DISABLE KEYS */;
  1098. /*!40000 ALTER TABLE `node__field_image` ENABLE KEYS */;
  1099. UNLOCK TABLES;
  1100. --
  1101. -- Table structure for table `node__field_tags`
  1102. --
  1103. DROP TABLE IF EXISTS `node__field_tags`;
  1104. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1105. /*!40101 SET character_set_client = utf8 */;
  1106. CREATE TABLE `node__field_tags` (
  1107. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1108. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1109. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1110. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1111. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  1112. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1113. `field_tags_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the target entity.',
  1114. PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`),
  1115. KEY `bundle` (`bundle`),
  1116. KEY `revision_id` (`revision_id`),
  1117. KEY `field_tags_target_id` (`field_tags_target_id`)
  1118. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Data storage for node field field_tags.';
  1119. /*!40101 SET character_set_client = @saved_cs_client */;
  1120. --
  1121. -- Dumping data for table `node__field_tags`
  1122. --
  1123. LOCK TABLES `node__field_tags` WRITE;
  1124. /*!40000 ALTER TABLE `node__field_tags` DISABLE KEYS */;
  1125. /*!40000 ALTER TABLE `node__field_tags` ENABLE KEYS */;
  1126. UNLOCK TABLES;
  1127. --
  1128. -- Table structure for table `node_access`
  1129. --
  1130. DROP TABLE IF EXISTS `node_access`;
  1131. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1132. /*!40101 SET character_set_client = utf8 */;
  1133. CREATE TABLE `node_access` (
  1134. `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid this record affects.',
  1135. `langcode` varchar(12) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language.langcode of this node.',
  1136. `fallback` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT 'Boolean indicating whether this record should be used as a fallback if a language condition is not provided.',
  1137. `gid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The grant ID a user must possess in the specified realm to gain this row''s privileges on the node.',
  1138. `realm` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The realm in which the user must possess the grant ID. Modules can define one or more realms by implementing hook_node_grants().',
  1139. `grant_view` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can view this node.',
  1140. `grant_update` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can edit this node.',
  1141. `grant_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can delete this node.',
  1142. PRIMARY KEY (`nid`,`gid`,`realm`,`langcode`)
  1143. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Identifies which realm/grant pairs a user must possess in…';
  1144. /*!40101 SET character_set_client = @saved_cs_client */;
  1145. --
  1146. -- Dumping data for table `node_access`
  1147. --
  1148. LOCK TABLES `node_access` WRITE;
  1149. /*!40000 ALTER TABLE `node_access` DISABLE KEYS */;
  1150. INSERT INTO `node_access` VALUES (0,'',1,0,'all',1,0,0);
  1151. /*!40000 ALTER TABLE `node_access` ENABLE KEYS */;
  1152. UNLOCK TABLES;
  1153. --
  1154. -- Table structure for table `node_field_data`
  1155. --
  1156. DROP TABLE IF EXISTS `node_field_data`;
  1157. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1158. /*!40101 SET character_set_client = utf8 */;
  1159. CREATE TABLE `node_field_data` (
  1160. `nid` int(10) unsigned NOT NULL,
  1161. `vid` int(10) unsigned NOT NULL,
  1162. `type` varchar(32) CHARACTER SET ascii NOT NULL COMMENT 'The ID of the target entity.',
  1163. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  1164. `status` tinyint(4) NOT NULL,
  1165. `uid` int(10) unsigned NOT NULL COMMENT 'The ID of the target entity.',
  1166. `title` varchar(255) NOT NULL,
  1167. `created` int(11) NOT NULL,
  1168. `changed` int(11) NOT NULL,
  1169. `promote` tinyint(4) NOT NULL,
  1170. `sticky` tinyint(4) NOT NULL,
  1171. `default_langcode` tinyint(4) NOT NULL,
  1172. `revision_translation_affected` tinyint(4) DEFAULT NULL,
  1173. PRIMARY KEY (`nid`,`langcode`),
  1174. KEY `node__id__default_langcode__langcode` (`nid`,`default_langcode`,`langcode`),
  1175. KEY `node__vid` (`vid`),
  1176. KEY `node_field__type__target_id` (`type`),
  1177. KEY `node_field__uid__target_id` (`uid`),
  1178. KEY `node_field__created` (`created`),
  1179. KEY `node_field__changed` (`changed`),
  1180. KEY `node__status_type` (`status`,`type`,`nid`),
  1181. KEY `node__frontpage` (`promote`,`status`,`sticky`,`created`),
  1182. KEY `node__title_type` (`title`(191),`type`(4))
  1183. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The data table for node entities.';
  1184. /*!40101 SET character_set_client = @saved_cs_client */;
  1185. --
  1186. -- Dumping data for table `node_field_data`
  1187. --
  1188. LOCK TABLES `node_field_data` WRITE;
  1189. /*!40000 ALTER TABLE `node_field_data` DISABLE KEYS */;
  1190. /*!40000 ALTER TABLE `node_field_data` ENABLE KEYS */;
  1191. UNLOCK TABLES;
  1192. --
  1193. -- Table structure for table `node_field_revision`
  1194. --
  1195. DROP TABLE IF EXISTS `node_field_revision`;
  1196. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1197. /*!40101 SET character_set_client = utf8 */;
  1198. CREATE TABLE `node_field_revision` (
  1199. `nid` int(10) unsigned NOT NULL,
  1200. `vid` int(10) unsigned NOT NULL,
  1201. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  1202. `status` tinyint(4) NOT NULL,
  1203. `uid` int(10) unsigned NOT NULL COMMENT 'The ID of the target entity.',
  1204. `title` varchar(255) DEFAULT NULL,
  1205. `created` int(11) DEFAULT NULL,
  1206. `changed` int(11) DEFAULT NULL,
  1207. `promote` tinyint(4) DEFAULT NULL,
  1208. `sticky` tinyint(4) DEFAULT NULL,
  1209. `default_langcode` tinyint(4) NOT NULL,
  1210. `revision_translation_affected` tinyint(4) DEFAULT NULL,
  1211. PRIMARY KEY (`vid`,`langcode`),
  1212. KEY `node__id__default_langcode__langcode` (`nid`,`default_langcode`,`langcode`),
  1213. KEY `node_field__uid__target_id` (`uid`)
  1214. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision data table for node entities.';
  1215. /*!40101 SET character_set_client = @saved_cs_client */;
  1216. --
  1217. -- Dumping data for table `node_field_revision`
  1218. --
  1219. LOCK TABLES `node_field_revision` WRITE;
  1220. /*!40000 ALTER TABLE `node_field_revision` DISABLE KEYS */;
  1221. /*!40000 ALTER TABLE `node_field_revision` ENABLE KEYS */;
  1222. UNLOCK TABLES;
  1223. --
  1224. -- Table structure for table `node_revision`
  1225. --
  1226. DROP TABLE IF EXISTS `node_revision`;
  1227. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1228. /*!40101 SET character_set_client = utf8 */;
  1229. CREATE TABLE `node_revision` (
  1230. `nid` int(10) unsigned NOT NULL,
  1231. `vid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1232. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  1233. `revision_uid` int(10) unsigned DEFAULT NULL COMMENT 'The ID of the target entity.',
  1234. `revision_timestamp` int(11) DEFAULT NULL,
  1235. `revision_log` longtext,
  1236. `revision_default` tinyint(4) DEFAULT NULL,
  1237. PRIMARY KEY (`vid`),
  1238. KEY `node__nid` (`nid`),
  1239. KEY `node_field__langcode` (`langcode`),
  1240. KEY `node_field__revision_uid__target_id` (`revision_uid`)
  1241. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision table for node entities.';
  1242. /*!40101 SET character_set_client = @saved_cs_client */;
  1243. --
  1244. -- Dumping data for table `node_revision`
  1245. --
  1246. LOCK TABLES `node_revision` WRITE;
  1247. /*!40000 ALTER TABLE `node_revision` DISABLE KEYS */;
  1248. /*!40000 ALTER TABLE `node_revision` ENABLE KEYS */;
  1249. UNLOCK TABLES;
  1250. --
  1251. -- Table structure for table `node_revision__body`
  1252. --
  1253. DROP TABLE IF EXISTS `node_revision__body`;
  1254. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1255. /*!40101 SET character_set_client = utf8 */;
  1256. CREATE TABLE `node_revision__body` (
  1257. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1258. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1259. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1260. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1261. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  1262. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1263. `body_value` longtext NOT NULL,
  1264. `body_summary` longtext,
  1265. `body_format` varchar(255) CHARACTER SET ascii DEFAULT NULL,
  1266. PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`),
  1267. KEY `bundle` (`bundle`),
  1268. KEY `revision_id` (`revision_id`),
  1269. KEY `body_format` (`body_format`)
  1270. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Revision archive storage for node field body.';
  1271. /*!40101 SET character_set_client = @saved_cs_client */;
  1272. --
  1273. -- Dumping data for table `node_revision__body`
  1274. --
  1275. LOCK TABLES `node_revision__body` WRITE;
  1276. /*!40000 ALTER TABLE `node_revision__body` DISABLE KEYS */;
  1277. /*!40000 ALTER TABLE `node_revision__body` ENABLE KEYS */;
  1278. UNLOCK TABLES;
  1279. --
  1280. -- Table structure for table `node_revision__comment`
  1281. --
  1282. DROP TABLE IF EXISTS `node_revision__comment`;
  1283. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1284. /*!40101 SET character_set_client = utf8 */;
  1285. CREATE TABLE `node_revision__comment` (
  1286. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1287. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1288. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1289. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1290. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  1291. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1292. `comment_status` int(11) NOT NULL DEFAULT '0' COMMENT 'Whether comments are allowed on this entity: 0 = no, 1 = closed (read only), 2 = open (read/write).',
  1293. PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`),
  1294. KEY `bundle` (`bundle`),
  1295. KEY `revision_id` (`revision_id`)
  1296. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Revision archive storage for node field comment.';
  1297. /*!40101 SET character_set_client = @saved_cs_client */;
  1298. --
  1299. -- Dumping data for table `node_revision__comment`
  1300. --
  1301. LOCK TABLES `node_revision__comment` WRITE;
  1302. /*!40000 ALTER TABLE `node_revision__comment` DISABLE KEYS */;
  1303. /*!40000 ALTER TABLE `node_revision__comment` ENABLE KEYS */;
  1304. UNLOCK TABLES;
  1305. --
  1306. -- Table structure for table `node_revision__field_image`
  1307. --
  1308. DROP TABLE IF EXISTS `node_revision__field_image`;
  1309. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1310. /*!40101 SET character_set_client = utf8 */;
  1311. CREATE TABLE `node_revision__field_image` (
  1312. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1313. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1314. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1315. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1316. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  1317. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1318. `field_image_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the file entity.',
  1319. `field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image''s ''alt'' attribute.',
  1320. `field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image''s ''title'' attribute.',
  1321. `field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
  1322. `field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
  1323. PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`),
  1324. KEY `bundle` (`bundle`),
  1325. KEY `revision_id` (`revision_id`),
  1326. KEY `field_image_target_id` (`field_image_target_id`)
  1327. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Revision archive storage for node field field_image.';
  1328. /*!40101 SET character_set_client = @saved_cs_client */;
  1329. --
  1330. -- Dumping data for table `node_revision__field_image`
  1331. --
  1332. LOCK TABLES `node_revision__field_image` WRITE;
  1333. /*!40000 ALTER TABLE `node_revision__field_image` DISABLE KEYS */;
  1334. /*!40000 ALTER TABLE `node_revision__field_image` ENABLE KEYS */;
  1335. UNLOCK TABLES;
  1336. --
  1337. -- Table structure for table `node_revision__field_tags`
  1338. --
  1339. DROP TABLE IF EXISTS `node_revision__field_tags`;
  1340. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1341. /*!40101 SET character_set_client = utf8 */;
  1342. CREATE TABLE `node_revision__field_tags` (
  1343. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1344. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1345. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1346. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1347. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  1348. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1349. `field_tags_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the target entity.',
  1350. PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`),
  1351. KEY `bundle` (`bundle`),
  1352. KEY `revision_id` (`revision_id`),
  1353. KEY `field_tags_target_id` (`field_tags_target_id`)
  1354. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Revision archive storage for node field field_tags.';
  1355. /*!40101 SET character_set_client = @saved_cs_client */;
  1356. --
  1357. -- Dumping data for table `node_revision__field_tags`
  1358. --
  1359. LOCK TABLES `node_revision__field_tags` WRITE;
  1360. /*!40000 ALTER TABLE `node_revision__field_tags` DISABLE KEYS */;
  1361. /*!40000 ALTER TABLE `node_revision__field_tags` ENABLE KEYS */;
  1362. UNLOCK TABLES;
  1363. --
  1364. -- Table structure for table `old_5df078_url_alias`
  1365. --
  1366. DROP TABLE IF EXISTS `old_5df078_url_alias`;
  1367. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1368. /*!40101 SET character_set_client = utf8 */;
  1369. CREATE TABLE `old_5df078_url_alias` (
  1370. `pid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'A unique path alias identifier.',
  1371. `source` varchar(255) NOT NULL DEFAULT '' COMMENT 'The Drupal path this alias is for. e.g. node/12.',
  1372. `alias` varchar(255) NOT NULL DEFAULT '' COMMENT 'The alias for this path. e.g. title-of-the-story.',
  1373. `langcode` varchar(12) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code this alias is for. if ''und'', the alias will be used for unknown languages. Each Drupal path can have an alias for each supported language.',
  1374. PRIMARY KEY (`pid`),
  1375. KEY `alias_langcode_pid` (`alias`(191),`langcode`,`pid`),
  1376. KEY `source_langcode_pid` (`source`(191),`langcode`,`pid`)
  1377. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='A list of URL aliases for Drupal paths. a user may visit…';
  1378. /*!40101 SET character_set_client = @saved_cs_client */;
  1379. --
  1380. -- Dumping data for table `old_5df078_url_alias`
  1381. --
  1382. LOCK TABLES `old_5df078_url_alias` WRITE;
  1383. /*!40000 ALTER TABLE `old_5df078_url_alias` DISABLE KEYS */;
  1384. /*!40000 ALTER TABLE `old_5df078_url_alias` ENABLE KEYS */;
  1385. UNLOCK TABLES;
  1386. --
  1387. -- Table structure for table `path_alias`
  1388. --
  1389. DROP TABLE IF EXISTS `path_alias`;
  1390. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1391. /*!40101 SET character_set_client = utf8 */;
  1392. CREATE TABLE `path_alias` (
  1393. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1394. `revision_id` int(10) unsigned DEFAULT NULL,
  1395. `uuid` varchar(128) CHARACTER SET ascii NOT NULL,
  1396. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  1397. `path` varchar(255) DEFAULT NULL,
  1398. `alias` varchar(255) DEFAULT NULL,
  1399. `status` tinyint(4) NOT NULL,
  1400. PRIMARY KEY (`id`),
  1401. UNIQUE KEY `path_alias_field__uuid__value` (`uuid`),
  1402. UNIQUE KEY `path_alias__revision_id` (`revision_id`),
  1403. KEY `path_alias__status` (`status`,`id`),
  1404. KEY `path_alias__alias_langcode_id_status` (`alias`(191),`langcode`,`id`,`status`),
  1405. KEY `path_alias__path_langcode_id_status` (`path`(191),`langcode`,`id`,`status`)
  1406. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for path_alias entities.';
  1407. /*!40101 SET character_set_client = @saved_cs_client */;
  1408. --
  1409. -- Dumping data for table `path_alias`
  1410. --
  1411. LOCK TABLES `path_alias` WRITE;
  1412. /*!40000 ALTER TABLE `path_alias` DISABLE KEYS */;
  1413. /*!40000 ALTER TABLE `path_alias` ENABLE KEYS */;
  1414. UNLOCK TABLES;
  1415. --
  1416. -- Table structure for table `path_alias_revision`
  1417. --
  1418. DROP TABLE IF EXISTS `path_alias_revision`;
  1419. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1420. /*!40101 SET character_set_client = utf8 */;
  1421. CREATE TABLE `path_alias_revision` (
  1422. `id` int(10) unsigned NOT NULL,
  1423. `revision_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1424. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  1425. `path` varchar(255) DEFAULT NULL,
  1426. `alias` varchar(255) DEFAULT NULL,
  1427. `status` tinyint(4) NOT NULL,
  1428. `revision_default` tinyint(4) DEFAULT NULL,
  1429. PRIMARY KEY (`revision_id`),
  1430. KEY `path_alias__id` (`id`)
  1431. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision table for path_alias entities.';
  1432. /*!40101 SET character_set_client = @saved_cs_client */;
  1433. --
  1434. -- Dumping data for table `path_alias_revision`
  1435. --
  1436. LOCK TABLES `path_alias_revision` WRITE;
  1437. /*!40000 ALTER TABLE `path_alias_revision` DISABLE KEYS */;
  1438. /*!40000 ALTER TABLE `path_alias_revision` ENABLE KEYS */;
  1439. UNLOCK TABLES;
  1440. --
  1441. -- Table structure for table `queue`
  1442. --
  1443. DROP TABLE IF EXISTS `queue`;
  1444. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1445. /*!40101 SET character_set_client = utf8 */;
  1446. CREATE TABLE `queue` (
  1447. `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique item ID.',
  1448. `name` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The queue name.',
  1449. `data` longblob COMMENT 'The arbitrary data for the item.',
  1450. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp when the claim lease expires on the item.',
  1451. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp when the item was created.',
  1452. PRIMARY KEY (`item_id`),
  1453. KEY `name_created` (`name`,`created`),
  1454. KEY `expire` (`expire`)
  1455. ) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb4 COMMENT='Stores items in queues.';
  1456. /*!40101 SET character_set_client = @saved_cs_client */;
  1457. --
  1458. -- Dumping data for table `queue`
  1459. --
  1460. LOCK TABLES `queue` WRITE;
  1461. /*!40000 ALTER TABLE `queue` DISABLE KEYS */;
  1462. INSERT INTO `queue` VALUES (58,'update_fetch_tasks','a:6:{s:4:\"name\";s:6:\"drupal\";s:4:\"info\";a:6:{s:4:\"name\";s:14:\"Automated Cron\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:5:\"8.8.0\";s:7:\"project\";s:6:\"drupal\";s:16:\"_info_file_ctime\";i:1576040601;s:9:\"datestamp\";i:0;}s:9:\"datestamp\";i:0;s:8:\"includes\";a:43:{s:14:\"automated_cron\";s:14:\"Automated Cron\";s:8:\"big_pipe\";s:7:\"BigPipe\";s:5:\"block\";s:5:\"Block\";s:13:\"block_content\";s:12:\"Custom Block\";s:10:\"breakpoint\";s:10:\"Breakpoint\";s:8:\"ckeditor\";s:8:\"CKEditor\";s:5:\"color\";s:5:\"Color\";s:7:\"comment\";s:7:\"Comment\";s:6:\"config\";s:21:\"Configuration Manager\";s:7:\"contact\";s:7:\"Contact\";s:10:\"contextual\";s:16:\"Contextual Links\";s:8:\"datetime\";s:8:\"Datetime\";s:5:\"dblog\";s:16:\"Database Logging\";s:18:\"dynamic_page_cache\";s:27:\"Internal Dynamic Page Cache\";s:6:\"editor\";s:11:\"Text Editor\";s:5:\"field\";s:5:\"Field\";s:8:\"field_ui\";s:8:\"Field UI\";s:4:\"file\";s:4:\"File\";s:6:\"filter\";s:6:\"Filter\";s:4:\"help\";s:4:\"Help\";s:7:\"history\";s:7:\"History\";s:5:\"image\";s:5:\"Image\";s:4:\"link\";s:4:\"Link\";s:17:\"menu_link_content\";s:17:\"Custom Menu Links\";s:7:\"menu_ui\";s:7:\"Menu UI\";s:4:\"node\";s:4:\"Node\";s:7:\"options\";s:7:\"Options\";s:10:\"page_cache\";s:19:\"Internal Page Cache\";s:4:\"path\";s:4:\"Path\";s:10:\"path_alias\";s:10:\"Path alias\";s:9:\"quickedit\";s:10:\"Quick Edit\";s:3:\"rdf\";s:3:\"RDF\";s:6:\"search\";s:6:\"Search\";s:8:\"shortcut\";s:8:\"Shortcut\";s:6:\"system\";s:6:\"System\";s:8:\"taxonomy\";s:8:\"Taxonomy\";s:4:\"text\";s:4:\"Text\";s:7:\"toolbar\";s:7:\"Toolbar\";s:4:\"tour\";s:4:\"Tour\";s:6:\"update\";s:14:\"Update Manager\";s:4:\"user\";s:4:\"User\";s:5:\"views\";s:5:\"Views\";s:8:\"views_ui\";s:8:\"Views UI\";}s:12:\"project_type\";s:4:\"core\";s:14:\"project_status\";b:1;}',0,1576040891),(59,'update_fetch_tasks','a:6:{s:4:\"name\";s:10:\"components\";s:4:\"info\";a:6:{s:4:\"name\";s:19:\"Component Libraries\";s:7:\"version\";s:7:\"8.x-1.1\";s:7:\"project\";s:10:\"components\";s:9:\"datestamp\";i:1556870888;s:7:\"package\";s:5:\"Other\";s:16:\"_info_file_ctime\";i:1576030872;}s:9:\"datestamp\";i:1556870888;s:8:\"includes\";a:1:{s:10:\"components\";s:19:\"Component Libraries\";}s:12:\"project_type\";s:6:\"module\";s:14:\"project_status\";b:1;}',0,1576040916);
  1463. /*!40000 ALTER TABLE `queue` ENABLE KEYS */;
  1464. UNLOCK TABLES;
  1465. --
  1466. -- Table structure for table `router`
  1467. --
  1468. DROP TABLE IF EXISTS `router`;
  1469. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1470. /*!40101 SET character_set_client = utf8 */;
  1471. CREATE TABLE `router` (
  1472. `name` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'Primary Key: Machine name of this route',
  1473. `path` varchar(255) NOT NULL DEFAULT '' COMMENT 'The path for this URI',
  1474. `pattern_outline` varchar(255) NOT NULL DEFAULT '' COMMENT 'The pattern',
  1475. `fit` int(11) NOT NULL DEFAULT '0' COMMENT 'A numeric representation of how specific the path is.',
  1476. `route` longblob COMMENT 'A serialized Route object',
  1477. `number_parts` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Number of parts in this router path.',
  1478. PRIMARY KEY (`name`),
  1479. KEY `pattern_outline_parts` (`pattern_outline`(191),`number_parts`)
  1480. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Maps paths to various callbacks (access, page and title)';
  1481. /*!40101 SET character_set_client = @saved_cs_client */;
  1482. --
  1483. -- Dumping data for table `router`
  1484. --
  1485. LOCK TABLES `router` WRITE;
  1486. /*!40000 ALTER TABLE `router` DISABLE KEYS */;
  1487. INSERT INTO `router` VALUES ('<current>','/<current>','/<current>',1,'C:31:\"Symfony\\Component\\Routing\\Route\":681:{a:9:{s:4:\"path\";s:10:\"/<current>\";s:4:\"host\";s:0:\"\";s:8:\"defaults\";a:0:{}s:12:\"requirements\";a:0:{}s:7:\"options\";a:2:{s:14:\"compiler_class\";s:33:\"Drupal\\Core\\Routing\\RouteCompiler\";s:4:\"utf8\";b:1;}s:7:\"schemes\";a:0:{}s:7:\"methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}s:9:\"condition\";s:0:\"\";s:8:\"compiled\";C:33:\"Drupal\\Core\\Routing\\CompiledRoute\":329:{a:11:{s:4:\"vars\";a:0:{}s:11:\"path_prefix\";s:0:\"\";s:10:\"path_regex\";s:19:\"#^/\\<current\\>$#sDu\";s:11:\"path_tokens\";a:1:{i:0;a:2:{i:0;s:4:\"text\";i:1;s:10:\"/<current>\";}}s:9:\"path_vars\";a:0:{}s:10:\"host_regex\";N;s:11:\"host_tokens\";a:0:{}s:9:\"host_vars\";a:0:{}s:3:\"fit\";i:1;s:14:\"patternOutline\";s:10:\"/<current>\";s:8:\"numParts\";i:1;}}}}',1),('<front>','/','/',1,'C:31:\"Symfony\\Component\\Routing\\Route\":748:{a:9:{s:4:\"path\";s:1:\"/\";s:4:\"host\";s:0:\"\";s:8:\"defaults\";a:1:{s:6:\"_title\";s:4:\"Home\";}s:12:\"requirements\";a:1:{s:7:\"_access\";s:4:\"TRUE\";}s:7:\"options\";a:3:{s:14:\"compiler_class\";s:33:\"Drupal\\Core\\Routing\\RouteCompiler\";s:4:\"utf8\";b:1;s:14:\"_access_checks\";a:1:{i:0;s:20:\"access_check.default\";}}s:7:\"schemes\";a:0:{}s:7:\"methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}s:9:\"condition\";s:0:\"\";s:8:\"compiled\";C:33:\"Drupal\\Core\\Routing\\CompiledRoute\":297:{a:11:{s:4:\"vars\";a:0:{}s:11:\"path_prefix\";s:0:\"\";s:10:\"path_regex\";s:8:\"#^/$#sDu\";s:11:\"path_tokens\";a:1:{i:0;a:2:{i:0;s:4:\"text\";i:1;s:1:\"/\";}}s:9:\"path_vars\";a:0:{}s:10:\"host_regex\";N;s:11:\"host_tokens\";a:0:{}s:9:\"host_vars\";a:0:{}s:3:\"fit\";i:1;s:14:\"patternOutline\";s:1:\"/\";s:8:\"numParts\";i:1;}}}}',1),('<nolink>','/','/',1,'C:31:\"Symfony\\Component\\Routing\\Route\":743:{a:9:{s:4:\"path\";s:1:\"/\";s:4:\"host\";s:0:\"\";s:8:\"defaults\";a:0:{}s:12:\"requirements\";a:1:{s:7:\"_access\";s:4:\"TRUE\";}s:7:\"options\";a:4:{s:14:\"compiler_class\";s:33:\"Drupal\\Core\\Routing\\RouteCompiler\";s:8:\"_no_path\";b:1;s:4:\"utf8\";b:1;s:14:\"_access_checks\";a:1:{i:0;s:20:\"access_check.default\";}}s:7:\"schemes\";a:0:{}s:7:\"methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}s:9:\"condition\";s:0:\"\";s:8:\"compiled\";C:33:\"Drupal\\Core\\Routing\\CompiledRoute\":297:{a:11:{s:4:\"vars\";a:0:{}s:11:\"path_prefix\";s:0:\"\";s:10:\"path_regex\";s:8:\"#^/$#sDu\";s:11:\"path_tokens\";a:1:{i:0;a:2:{i:0;s:4:\"text\";i:1;s:1:\"/\";}}s:9:\"path_vars\";a:0:{}s:10:\"host_regex\";N;s:11:\"host_tokens\";a:0:{}s:9:\"host_vars\";a:0:{}s:3:\"fit\";i:1;s:14:\"patternOutline\";s:1:\"/\";s:8:\"numParts\";i:1;}}}}',1),('<none>','/','/',1,'C:31:\"Symfony\\Component\\Routing\\Route\":743:{a:9:{s:4:\"path\";s:1:\"/\";s:4:\"host\";s:0:\"\";s:8:\"defaults\";a:0:{}s:12:\"requirements\";a:1:{s:7:\"_access\";s:4:\"TRUE\";}s:7:\"options\";a:4:{s:14:\"compiler_class\";s:33:\"Drupal\\Core\\Routing\\RouteCompiler\";s:8:\"_no_path\";b:1;s:4:\"utf8\";b:1;s:14:\"_access_checks\";a:1:{i:0;s:20:\"access_check.default\";}}s:7:\"schemes\";a:0:{}s:7:\"methods\";a:2:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";}s:9:\"condition\";s:0:\"\";s:8:\"compiled\";C:33:\"Drupal\\Core\\Routing\\CompiledRoute\":297:{a:11:{s:4:\"vars\";a:0:{}s:11:\"path_prefix\";s:0:\"\";s:10:\"path_regex\";s:8:\"#^/$#sDu\";s:11:\"path_tokens\";a:1:{i:0;a:2:{i:0;s:4:\"text\";i:1;s:1:\"/\";}}s:9:\"path_vars\";a:0:{}s:10:\"host_regex\";N;s:11:\"host_tokens\";a:0:{}s:9:\"host_vars\";a:0:{}s:3:\"fit\";i:1;s:14:\"patternOutline\";s:1:\"/\";s:8:\"numParts\";i:1;}}}}',1),('big_pipe.nojs','/big_pipe/no-js','/big_pipe/no-js',3,'C:31:\"Symfony\\Component\\Routing\\Route\":930:{a:9:{s:4:\"path\";s:15:\"/big_pipe/no-js\";s:4:\"host\";s:0:\"\";s:8:\"defaults\";a:2:{s:11:\"_controller\";s:59:\"\\Drupal\\big_pipe\\Controller\\BigPipeController:setNoJsCookie\";s:6:\"_title\";s:19:\"BigPipe no-JS check\";}s:12:\"requirements\";a:1:{s:7:\"_access\";s:4:\"TRUE\";}s:7:\"options\";a:4:{s:14:\"compiler_class\";s:33:\"Drupal\\Core\\Routing\\RouteCompiler\";s:8:\"no_cache\
  1488. /*!40000 ALTER TABLE `router` ENABLE KEYS */;
  1489. UNLOCK TABLES;
  1490. --
  1491. -- Table structure for table `search_dataset`
  1492. --
  1493. DROP TABLE IF EXISTS `search_dataset`;
  1494. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1495. /*!40101 SET character_set_client = utf8 */;
  1496. CREATE TABLE `search_dataset` (
  1497. `sid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Search item ID, e.g. node ID for nodes.',
  1498. `langcode` varchar(12) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The languages.langcode of the item variant.',
  1499. `type` varchar(64) CHARACTER SET ascii NOT NULL COMMENT 'Type of item, e.g. node.',
  1500. `data` longtext NOT NULL COMMENT 'List of space-separated words from the item.',
  1501. `reindex` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Set to force node reindexing.',
  1502. PRIMARY KEY (`sid`,`langcode`,`type`)
  1503. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Stores items that will be searched.';
  1504. /*!40101 SET character_set_client = @saved_cs_client */;
  1505. --
  1506. -- Dumping data for table `search_dataset`
  1507. --
  1508. LOCK TABLES `search_dataset` WRITE;
  1509. /*!40000 ALTER TABLE `search_dataset` DISABLE KEYS */;
  1510. /*!40000 ALTER TABLE `search_dataset` ENABLE KEYS */;
  1511. UNLOCK TABLES;
  1512. --
  1513. -- Table structure for table `search_index`
  1514. --
  1515. DROP TABLE IF EXISTS `search_index`;
  1516. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1517. /*!40101 SET character_set_client = utf8 */;
  1518. CREATE TABLE `search_index` (
  1519. `word` varchar(50) NOT NULL DEFAULT '' COMMENT 'The search_total.word that is associated with the search item.',
  1520. `sid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The search_dataset.sid of the searchable item to which the word belongs.',
  1521. `langcode` varchar(12) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The languages.langcode of the item variant.',
  1522. `type` varchar(64) CHARACTER SET ascii NOT NULL COMMENT 'The search_dataset.type of the searchable item to which the word belongs.',
  1523. `score` float DEFAULT NULL COMMENT 'The numeric score of the word, higher being more important.',
  1524. PRIMARY KEY (`word`,`sid`,`langcode`,`type`),
  1525. KEY `sid_type` (`sid`,`langcode`,`type`)
  1526. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Stores the search index, associating words, items and…';
  1527. /*!40101 SET character_set_client = @saved_cs_client */;
  1528. --
  1529. -- Dumping data for table `search_index`
  1530. --
  1531. LOCK TABLES `search_index` WRITE;
  1532. /*!40000 ALTER TABLE `search_index` DISABLE KEYS */;
  1533. /*!40000 ALTER TABLE `search_index` ENABLE KEYS */;
  1534. UNLOCK TABLES;
  1535. --
  1536. -- Table structure for table `search_total`
  1537. --
  1538. DROP TABLE IF EXISTS `search_total`;
  1539. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1540. /*!40101 SET character_set_client = utf8 */;
  1541. CREATE TABLE `search_total` (
  1542. `word` varchar(50) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique word in the search index.',
  1543. `count` float DEFAULT NULL COMMENT 'The count of the word in the index using Zipf''s law to equalize the probability distribution.',
  1544. PRIMARY KEY (`word`)
  1545. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Stores search totals for words.';
  1546. /*!40101 SET character_set_client = @saved_cs_client */;
  1547. --
  1548. -- Dumping data for table `search_total`
  1549. --
  1550. LOCK TABLES `search_total` WRITE;
  1551. /*!40000 ALTER TABLE `search_total` DISABLE KEYS */;
  1552. /*!40000 ALTER TABLE `search_total` ENABLE KEYS */;
  1553. UNLOCK TABLES;
  1554. --
  1555. -- Table structure for table `semaphore`
  1556. --
  1557. DROP TABLE IF EXISTS `semaphore`;
  1558. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1559. /*!40101 SET character_set_client = utf8 */;
  1560. CREATE TABLE `semaphore` (
  1561. `name` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique name.',
  1562. `value` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'A value for the semaphore.',
  1563. `expire` double NOT NULL COMMENT 'A Unix timestamp with microseconds indicating when the semaphore should expire.',
  1564. PRIMARY KEY (`name`),
  1565. KEY `value` (`value`),
  1566. KEY `expire` (`expire`)
  1567. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Table for holding semaphores, locks, flags, etc. that…';
  1568. /*!40101 SET character_set_client = @saved_cs_client */;
  1569. --
  1570. -- Dumping data for table `semaphore`
  1571. --
  1572. LOCK TABLES `semaphore` WRITE;
  1573. /*!40000 ALTER TABLE `semaphore` DISABLE KEYS */;
  1574. /*!40000 ALTER TABLE `semaphore` ENABLE KEYS */;
  1575. UNLOCK TABLES;
  1576. --
  1577. -- Table structure for table `sequences`
  1578. --
  1579. DROP TABLE IF EXISTS `sequences`;
  1580. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1581. /*!40101 SET character_set_client = utf8 */;
  1582. CREATE TABLE `sequences` (
  1583. `value` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The value of the sequence.',
  1584. PRIMARY KEY (`value`)
  1585. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COMMENT='Stores IDs.';
  1586. /*!40101 SET character_set_client = @saved_cs_client */;
  1587. --
  1588. -- Dumping data for table `sequences`
  1589. --
  1590. LOCK TABLES `sequences` WRITE;
  1591. /*!40000 ALTER TABLE `sequences` DISABLE KEYS */;
  1592. INSERT INTO `sequences` VALUES (2);
  1593. /*!40000 ALTER TABLE `sequences` ENABLE KEYS */;
  1594. UNLOCK TABLES;
  1595. --
  1596. -- Table structure for table `sessions`
  1597. --
  1598. DROP TABLE IF EXISTS `sessions`;
  1599. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1600. /*!40101 SET character_set_client = utf8 */;
  1601. CREATE TABLE `sessions` (
  1602. `uid` int(10) unsigned NOT NULL COMMENT 'The users.uid corresponding to a session, or 0 for anonymous user.',
  1603. `sid` varchar(128) CHARACTER SET ascii NOT NULL COMMENT 'A session ID (hashed). The value is generated by Drupal''s session handlers.',
  1604. `hostname` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The IP address that last used this session ID (sid).',
  1605. `timestamp` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when this session last requested a page. Old records are purged by PHP automatically.',
  1606. `session` longblob COMMENT 'The serialized contents of $_SESSION, an array of name/value pairs that persists across page requests by this session ID. Drupal loads $_SESSION from here at the start of each request and saves it at the end.',
  1607. PRIMARY KEY (`sid`),
  1608. KEY `timestamp` (`timestamp`),
  1609. KEY `uid` (`uid`)
  1610. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Drupal''s session handlers read and write into the sessions…';
  1611. /*!40101 SET character_set_client = @saved_cs_client */;
  1612. --
  1613. -- Dumping data for table `sessions`
  1614. --
  1615. LOCK TABLES `sessions` WRITE;
  1616. /*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
  1617. INSERT INTO `sessions` VALUES (1,'1FEG9jZMvrqyVp1fBd3-vRzG14-tMxbFBVISGm5kWBI','172.21.0.5',1576041735,'_sf2_attributes|a:1:{s:3:\"uid\";s:1:\"1\";}_sf2_meta|a:4:{s:1:\"u\";i:1576041717;s:1:\"c\";i:1576038393;s:1:\"l\";s:7:\"2000000\";s:1:\"s\";s:43:\"Rm-TRzi5_GM9ABs7zmhjalSFY-36v0ea9YRb-no8SIQ\";}');
  1618. /*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
  1619. UNLOCK TABLES;
  1620. --
  1621. -- Table structure for table `shortcut`
  1622. --
  1623. DROP TABLE IF EXISTS `shortcut`;
  1624. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1625. /*!40101 SET character_set_client = utf8 */;
  1626. CREATE TABLE `shortcut` (
  1627. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1628. `shortcut_set` varchar(32) CHARACTER SET ascii NOT NULL COMMENT 'The ID of the target entity.',
  1629. `uuid` varchar(128) CHARACTER SET ascii NOT NULL,
  1630. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  1631. PRIMARY KEY (`id`),
  1632. UNIQUE KEY `shortcut_field__uuid__value` (`uuid`),
  1633. KEY `shortcut_field__shortcut_set__target_id` (`shortcut_set`)
  1634. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COMMENT='The base table for shortcut entities.';
  1635. /*!40101 SET character_set_client = @saved_cs_client */;
  1636. --
  1637. -- Dumping data for table `shortcut`
  1638. --
  1639. LOCK TABLES `shortcut` WRITE;
  1640. /*!40000 ALTER TABLE `shortcut` DISABLE KEYS */;
  1641. INSERT INTO `shortcut` VALUES (1,'default','2312fa94-1f6e-4d39-bd03-363e6f256bed','en'),(2,'default','7d0593d3-fc91-4fcf-8614-a7eadd4c1878','en');
  1642. /*!40000 ALTER TABLE `shortcut` ENABLE KEYS */;
  1643. UNLOCK TABLES;
  1644. --
  1645. -- Table structure for table `shortcut_field_data`
  1646. --
  1647. DROP TABLE IF EXISTS `shortcut_field_data`;
  1648. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1649. /*!40101 SET character_set_client = utf8 */;
  1650. CREATE TABLE `shortcut_field_data` (
  1651. `id` int(10) unsigned NOT NULL,
  1652. `shortcut_set` varchar(32) CHARACTER SET ascii NOT NULL COMMENT 'The ID of the target entity.',
  1653. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  1654. `title` varchar(255) DEFAULT NULL,
  1655. `weight` int(11) DEFAULT NULL,
  1656. `link__uri` varchar(2048) DEFAULT NULL COMMENT 'The URI of the link.',
  1657. `link__title` varchar(255) DEFAULT NULL COMMENT 'The link text.',
  1658. `link__options` longblob COMMENT 'Serialized array of options for the link.',
  1659. `default_langcode` tinyint(4) NOT NULL,
  1660. PRIMARY KEY (`id`,`langcode`),
  1661. KEY `shortcut__id__default_langcode__langcode` (`id`,`default_langcode`,`langcode`),
  1662. KEY `shortcut_field__shortcut_set__target_id` (`shortcut_set`),
  1663. KEY `shortcut_field__link__uri` (`link__uri`(30))
  1664. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The data table for shortcut entities.';
  1665. /*!40101 SET character_set_client = @saved_cs_client */;
  1666. --
  1667. -- Dumping data for table `shortcut_field_data`
  1668. --
  1669. LOCK TABLES `shortcut_field_data` WRITE;
  1670. /*!40000 ALTER TABLE `shortcut_field_data` DISABLE KEYS */;
  1671. INSERT INTO `shortcut_field_data` VALUES (1,'default','en','Add content',-20,'internal:/node/add',NULL,'a:0:{}',1),(2,'default','en','All content',-19,'internal:/admin/content',NULL,'a:0:{}',1);
  1672. /*!40000 ALTER TABLE `shortcut_field_data` ENABLE KEYS */;
  1673. UNLOCK TABLES;
  1674. --
  1675. -- Table structure for table `shortcut_set_users`
  1676. --
  1677. DROP TABLE IF EXISTS `shortcut_set_users`;
  1678. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1679. /*!40101 SET character_set_client = utf8 */;
  1680. CREATE TABLE `shortcut_set_users` (
  1681. `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid for this set.',
  1682. `set_name` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The shortcut_set.set_name that will be displayed for this user.',
  1683. PRIMARY KEY (`uid`),
  1684. KEY `set_name` (`set_name`)
  1685. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Maps users to shortcut sets.';
  1686. /*!40101 SET character_set_client = @saved_cs_client */;
  1687. --
  1688. -- Dumping data for table `shortcut_set_users`
  1689. --
  1690. LOCK TABLES `shortcut_set_users` WRITE;
  1691. /*!40000 ALTER TABLE `shortcut_set_users` DISABLE KEYS */;
  1692. /*!40000 ALTER TABLE `shortcut_set_users` ENABLE KEYS */;
  1693. UNLOCK TABLES;
  1694. --
  1695. -- Table structure for table `taxonomy_index`
  1696. --
  1697. DROP TABLE IF EXISTS `taxonomy_index`;
  1698. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1699. /*!40101 SET character_set_client = utf8 */;
  1700. CREATE TABLE `taxonomy_index` (
  1701. `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid this record tracks.',
  1702. `tid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The term ID.',
  1703. `status` int(11) NOT NULL DEFAULT '1' COMMENT 'Boolean indicating whether the node is published (visible to non-administrators).',
  1704. `sticky` tinyint(4) DEFAULT '0' COMMENT 'Boolean indicating whether the node is sticky.',
  1705. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the node was created.',
  1706. PRIMARY KEY (`nid`,`tid`),
  1707. KEY `term_node` (`tid`,`status`,`sticky`,`created`)
  1708. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Maintains denormalized information about node/term…';
  1709. /*!40101 SET character_set_client = @saved_cs_client */;
  1710. --
  1711. -- Dumping data for table `taxonomy_index`
  1712. --
  1713. LOCK TABLES `taxonomy_index` WRITE;
  1714. /*!40000 ALTER TABLE `taxonomy_index` DISABLE KEYS */;
  1715. /*!40000 ALTER TABLE `taxonomy_index` ENABLE KEYS */;
  1716. UNLOCK TABLES;
  1717. --
  1718. -- Table structure for table `taxonomy_term__parent`
  1719. --
  1720. DROP TABLE IF EXISTS `taxonomy_term__parent`;
  1721. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1722. /*!40101 SET character_set_client = utf8 */;
  1723. CREATE TABLE `taxonomy_term__parent` (
  1724. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1725. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1726. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1727. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1728. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  1729. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1730. `parent_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the target entity.',
  1731. PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`),
  1732. KEY `revision_id` (`revision_id`),
  1733. KEY `parent_target_id` (`parent_target_id`),
  1734. KEY `bundle_delta_target_id` (`bundle`,`delta`,`parent_target_id`)
  1735. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Data storage for taxonomy_term field parent.';
  1736. /*!40101 SET character_set_client = @saved_cs_client */;
  1737. --
  1738. -- Dumping data for table `taxonomy_term__parent`
  1739. --
  1740. LOCK TABLES `taxonomy_term__parent` WRITE;
  1741. /*!40000 ALTER TABLE `taxonomy_term__parent` DISABLE KEYS */;
  1742. /*!40000 ALTER TABLE `taxonomy_term__parent` ENABLE KEYS */;
  1743. UNLOCK TABLES;
  1744. --
  1745. -- Table structure for table `taxonomy_term_data`
  1746. --
  1747. DROP TABLE IF EXISTS `taxonomy_term_data`;
  1748. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1749. /*!40101 SET character_set_client = utf8 */;
  1750. CREATE TABLE `taxonomy_term_data` (
  1751. `tid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1752. `revision_id` int(10) unsigned DEFAULT NULL,
  1753. `vid` varchar(32) CHARACTER SET ascii NOT NULL COMMENT 'The ID of the target entity.',
  1754. `uuid` varchar(128) CHARACTER SET ascii NOT NULL,
  1755. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  1756. PRIMARY KEY (`tid`),
  1757. UNIQUE KEY `taxonomy_term_field__uuid__value` (`uuid`),
  1758. UNIQUE KEY `taxonomy_term__revision_id` (`revision_id`),
  1759. KEY `taxonomy_term_field__vid__target_id` (`vid`)
  1760. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for taxonomy_term entities.';
  1761. /*!40101 SET character_set_client = @saved_cs_client */;
  1762. --
  1763. -- Dumping data for table `taxonomy_term_data`
  1764. --
  1765. LOCK TABLES `taxonomy_term_data` WRITE;
  1766. /*!40000 ALTER TABLE `taxonomy_term_data` DISABLE KEYS */;
  1767. /*!40000 ALTER TABLE `taxonomy_term_data` ENABLE KEYS */;
  1768. UNLOCK TABLES;
  1769. --
  1770. -- Table structure for table `taxonomy_term_field_data`
  1771. --
  1772. DROP TABLE IF EXISTS `taxonomy_term_field_data`;
  1773. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1774. /*!40101 SET character_set_client = utf8 */;
  1775. CREATE TABLE `taxonomy_term_field_data` (
  1776. `tid` int(10) unsigned NOT NULL,
  1777. `revision_id` int(10) unsigned NOT NULL,
  1778. `vid` varchar(32) CHARACTER SET ascii NOT NULL COMMENT 'The ID of the target entity.',
  1779. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  1780. `status` tinyint(4) NOT NULL,
  1781. `name` varchar(255) NOT NULL,
  1782. `description__value` longtext,
  1783. `description__format` varchar(255) CHARACTER SET ascii DEFAULT NULL,
  1784. `weight` int(11) NOT NULL,
  1785. `changed` int(11) DEFAULT NULL,
  1786. `default_langcode` tinyint(4) NOT NULL,
  1787. `revision_translation_affected` tinyint(4) DEFAULT NULL,
  1788. PRIMARY KEY (`tid`,`langcode`),
  1789. KEY `taxonomy_term__id__default_langcode__langcode` (`tid`,`default_langcode`,`langcode`),
  1790. KEY `taxonomy_term__revision_id` (`revision_id`),
  1791. KEY `taxonomy_term_field__name` (`name`(191)),
  1792. KEY `taxonomy_term__status_vid` (`status`,`vid`,`tid`),
  1793. KEY `taxonomy_term__tree` (`vid`,`weight`,`name`(191)),
  1794. KEY `taxonomy_term__vid_name` (`vid`,`name`(191))
  1795. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The data table for taxonomy_term entities.';
  1796. /*!40101 SET character_set_client = @saved_cs_client */;
  1797. --
  1798. -- Dumping data for table `taxonomy_term_field_data`
  1799. --
  1800. LOCK TABLES `taxonomy_term_field_data` WRITE;
  1801. /*!40000 ALTER TABLE `taxonomy_term_field_data` DISABLE KEYS */;
  1802. /*!40000 ALTER TABLE `taxonomy_term_field_data` ENABLE KEYS */;
  1803. UNLOCK TABLES;
  1804. --
  1805. -- Table structure for table `taxonomy_term_field_revision`
  1806. --
  1807. DROP TABLE IF EXISTS `taxonomy_term_field_revision`;
  1808. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1809. /*!40101 SET character_set_client = utf8 */;
  1810. CREATE TABLE `taxonomy_term_field_revision` (
  1811. `tid` int(10) unsigned NOT NULL,
  1812. `revision_id` int(10) unsigned NOT NULL,
  1813. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  1814. `status` tinyint(4) NOT NULL,
  1815. `name` varchar(255) DEFAULT NULL,
  1816. `description__value` longtext,
  1817. `description__format` varchar(255) CHARACTER SET ascii DEFAULT NULL,
  1818. `changed` int(11) DEFAULT NULL,
  1819. `default_langcode` tinyint(4) NOT NULL,
  1820. `revision_translation_affected` tinyint(4) DEFAULT NULL,
  1821. PRIMARY KEY (`revision_id`,`langcode`),
  1822. KEY `taxonomy_term__id__default_langcode__langcode` (`tid`,`default_langcode`,`langcode`),
  1823. KEY `taxonomy_term_field__description__format` (`description__format`)
  1824. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision data table for taxonomy_term entities.';
  1825. /*!40101 SET character_set_client = @saved_cs_client */;
  1826. --
  1827. -- Dumping data for table `taxonomy_term_field_revision`
  1828. --
  1829. LOCK TABLES `taxonomy_term_field_revision` WRITE;
  1830. /*!40000 ALTER TABLE `taxonomy_term_field_revision` DISABLE KEYS */;
  1831. /*!40000 ALTER TABLE `taxonomy_term_field_revision` ENABLE KEYS */;
  1832. UNLOCK TABLES;
  1833. --
  1834. -- Table structure for table `taxonomy_term_revision`
  1835. --
  1836. DROP TABLE IF EXISTS `taxonomy_term_revision`;
  1837. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1838. /*!40101 SET character_set_client = utf8 */;
  1839. CREATE TABLE `taxonomy_term_revision` (
  1840. `tid` int(10) unsigned NOT NULL,
  1841. `revision_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  1842. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  1843. `revision_user` int(10) unsigned DEFAULT NULL COMMENT 'The ID of the target entity.',
  1844. `revision_created` int(11) DEFAULT NULL,
  1845. `revision_log_message` longtext,
  1846. `revision_default` tinyint(4) DEFAULT NULL,
  1847. PRIMARY KEY (`revision_id`),
  1848. KEY `taxonomy_term__tid` (`tid`),
  1849. KEY `taxonomy_term_field__revision_user__target_id` (`revision_user`)
  1850. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The revision table for taxonomy_term entities.';
  1851. /*!40101 SET character_set_client = @saved_cs_client */;
  1852. --
  1853. -- Dumping data for table `taxonomy_term_revision`
  1854. --
  1855. LOCK TABLES `taxonomy_term_revision` WRITE;
  1856. /*!40000 ALTER TABLE `taxonomy_term_revision` DISABLE KEYS */;
  1857. /*!40000 ALTER TABLE `taxonomy_term_revision` ENABLE KEYS */;
  1858. UNLOCK TABLES;
  1859. --
  1860. -- Table structure for table `taxonomy_term_revision__parent`
  1861. --
  1862. DROP TABLE IF EXISTS `taxonomy_term_revision__parent`;
  1863. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1864. /*!40101 SET character_set_client = utf8 */;
  1865. CREATE TABLE `taxonomy_term_revision__parent` (
  1866. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1867. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1868. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1869. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1870. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  1871. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1872. `parent_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the target entity.',
  1873. PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`),
  1874. KEY `bundle` (`bundle`),
  1875. KEY `revision_id` (`revision_id`),
  1876. KEY `parent_target_id` (`parent_target_id`)
  1877. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Revision archive storage for taxonomy_term field parent.';
  1878. /*!40101 SET character_set_client = @saved_cs_client */;
  1879. --
  1880. -- Dumping data for table `taxonomy_term_revision__parent`
  1881. --
  1882. LOCK TABLES `taxonomy_term_revision__parent` WRITE;
  1883. /*!40000 ALTER TABLE `taxonomy_term_revision__parent` DISABLE KEYS */;
  1884. /*!40000 ALTER TABLE `taxonomy_term_revision__parent` ENABLE KEYS */;
  1885. UNLOCK TABLES;
  1886. --
  1887. -- Table structure for table `user__roles`
  1888. --
  1889. DROP TABLE IF EXISTS `user__roles`;
  1890. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1891. /*!40101 SET character_set_client = utf8 */;
  1892. CREATE TABLE `user__roles` (
  1893. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1894. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1895. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1896. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to, which for an unversioned entity type is the same as the entity id',
  1897. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  1898. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1899. `roles_target_id` varchar(255) CHARACTER SET ascii NOT NULL COMMENT 'The ID of the target entity.',
  1900. PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`),
  1901. KEY `bundle` (`bundle`),
  1902. KEY `revision_id` (`revision_id`),
  1903. KEY `roles_target_id` (`roles_target_id`)
  1904. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Data storage for user field roles.';
  1905. /*!40101 SET character_set_client = @saved_cs_client */;
  1906. --
  1907. -- Dumping data for table `user__roles`
  1908. --
  1909. LOCK TABLES `user__roles` WRITE;
  1910. /*!40000 ALTER TABLE `user__roles` DISABLE KEYS */;
  1911. INSERT INTO `user__roles` VALUES ('user',0,1,1,'en',0,'administrator');
  1912. /*!40000 ALTER TABLE `user__roles` ENABLE KEYS */;
  1913. UNLOCK TABLES;
  1914. --
  1915. -- Table structure for table `user__user_picture`
  1916. --
  1917. DROP TABLE IF EXISTS `user__user_picture`;
  1918. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1919. /*!40101 SET character_set_client = utf8 */;
  1920. CREATE TABLE `user__user_picture` (
  1921. `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1922. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1923. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1924. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to, which for an unversioned entity type is the same as the entity id',
  1925. `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.',
  1926. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1927. `user_picture_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the file entity.',
  1928. `user_picture_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image''s ''alt'' attribute.',
  1929. `user_picture_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image''s ''title'' attribute.',
  1930. `user_picture_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
  1931. `user_picture_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
  1932. PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`),
  1933. KEY `bundle` (`bundle`),
  1934. KEY `revision_id` (`revision_id`),
  1935. KEY `user_picture_target_id` (`user_picture_target_id`)
  1936. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Data storage for user field user_picture.';
  1937. /*!40101 SET character_set_client = @saved_cs_client */;
  1938. --
  1939. -- Dumping data for table `user__user_picture`
  1940. --
  1941. LOCK TABLES `user__user_picture` WRITE;
  1942. /*!40000 ALTER TABLE `user__user_picture` DISABLE KEYS */;
  1943. /*!40000 ALTER TABLE `user__user_picture` ENABLE KEYS */;
  1944. UNLOCK TABLES;
  1945. --
  1946. -- Table structure for table `users`
  1947. --
  1948. DROP TABLE IF EXISTS `users`;
  1949. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1950. /*!40101 SET character_set_client = utf8 */;
  1951. CREATE TABLE `users` (
  1952. `uid` int(10) unsigned NOT NULL,
  1953. `uuid` varchar(128) CHARACTER SET ascii NOT NULL,
  1954. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  1955. PRIMARY KEY (`uid`),
  1956. UNIQUE KEY `user_field__uuid__value` (`uuid`)
  1957. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for user entities.';
  1958. /*!40101 SET character_set_client = @saved_cs_client */;
  1959. --
  1960. -- Dumping data for table `users`
  1961. --
  1962. LOCK TABLES `users` WRITE;
  1963. /*!40000 ALTER TABLE `users` DISABLE KEYS */;
  1964. INSERT INTO `users` VALUES (0,'8f0fcde3-1d0e-4e74-b3f8-9155a798ebba','en'),(1,'ec7c030b-fb0b-4ad3-b234-fc21d64fdc15','en');
  1965. /*!40000 ALTER TABLE `users` ENABLE KEYS */;
  1966. UNLOCK TABLES;
  1967. --
  1968. -- Table structure for table `users_data`
  1969. --
  1970. DROP TABLE IF EXISTS `users_data`;
  1971. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1972. /*!40101 SET character_set_client = utf8 */;
  1973. CREATE TABLE `users_data` (
  1974. `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid this record affects.',
  1975. `module` varchar(50) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The name of the module declaring the variable.',
  1976. `name` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The identifier of the data.',
  1977. `value` longblob COMMENT 'The value.',
  1978. `serialized` tinyint(3) unsigned DEFAULT '0' COMMENT 'Whether value is serialized.',
  1979. PRIMARY KEY (`uid`,`module`,`name`),
  1980. KEY `module` (`module`),
  1981. KEY `name` (`name`)
  1982. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Stores module data as key/value pairs per user.';
  1983. /*!40101 SET character_set_client = @saved_cs_client */;
  1984. --
  1985. -- Dumping data for table `users_data`
  1986. --
  1987. LOCK TABLES `users_data` WRITE;
  1988. /*!40000 ALTER TABLE `users_data` DISABLE KEYS */;
  1989. /*!40000 ALTER TABLE `users_data` ENABLE KEYS */;
  1990. UNLOCK TABLES;
  1991. --
  1992. -- Table structure for table `users_field_data`
  1993. --
  1994. DROP TABLE IF EXISTS `users_field_data`;
  1995. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1996. /*!40101 SET character_set_client = utf8 */;
  1997. CREATE TABLE `users_field_data` (
  1998. `uid` int(10) unsigned NOT NULL,
  1999. `langcode` varchar(12) CHARACTER SET ascii NOT NULL,
  2000. `preferred_langcode` varchar(12) CHARACTER SET ascii DEFAULT NULL,
  2001. `preferred_admin_langcode` varchar(12) CHARACTER SET ascii DEFAULT NULL,
  2002. `name` varchar(60) NOT NULL,
  2003. `pass` varchar(255) DEFAULT NULL,
  2004. `mail` varchar(254) DEFAULT NULL,
  2005. `timezone` varchar(32) DEFAULT NULL,
  2006. `status` tinyint(4) DEFAULT NULL,
  2007. `created` int(11) NOT NULL,
  2008. `changed` int(11) DEFAULT NULL,
  2009. `access` int(11) NOT NULL,
  2010. `login` int(11) DEFAULT NULL,
  2011. `init` varchar(254) DEFAULT NULL,
  2012. `default_langcode` tinyint(4) NOT NULL,
  2013. PRIMARY KEY (`uid`,`langcode`),
  2014. UNIQUE KEY `user__name` (`name`,`langcode`),
  2015. KEY `user__id__default_langcode__langcode` (`uid`,`default_langcode`,`langcode`),
  2016. KEY `user_field__mail` (`mail`(191)),
  2017. KEY `user_field__created` (`created`),
  2018. KEY `user_field__access` (`access`)
  2019. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The data table for user entities.';
  2020. /*!40101 SET character_set_client = @saved_cs_client */;
  2021. --
  2022. -- Dumping data for table `users_field_data`
  2023. --
  2024. LOCK TABLES `users_field_data` WRITE;
  2025. /*!40000 ALTER TABLE `users_field_data` DISABLE KEYS */;
  2026. INSERT INTO `users_field_data` VALUES (0,'en','en',NULL,'',NULL,NULL,'',0,1576037932,1576037932,0,0,NULL,1),(1,'en','en',NULL,'admin','$S$EDiBGWKPqoW7i/gKnRbvtvw9pdKeOh2IVTa0ntrgx74c2P5uSjrP','me@joshfabean.com','UTC',1,1576037932,1576038374,1576041720,1576038374,'me@joshfabean.com',1);
  2027. /*!40000 ALTER TABLE `users_field_data` ENABLE KEYS */;
  2028. UNLOCK TABLES;
  2029. --
  2030. -- Table structure for table `watchdog`
  2031. --
  2032. DROP TABLE IF EXISTS `watchdog`;
  2033. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2034. /*!40101 SET character_set_client = utf8 */;
  2035. CREATE TABLE `watchdog` (
  2036. `wid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique watchdog event ID.',
  2037. `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid of the user who triggered the event.',
  2038. `type` varchar(64) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'Type of log message, for example "user" or "page not found."',
  2039. `message` longtext NOT NULL COMMENT 'Text of log message to be passed into the t() function.',
  2040. `variables` longblob NOT NULL COMMENT 'Serialized array of variables that match the message string and that is passed into the t() function.',
  2041. `severity` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'The severity level of the event. ranges from 0 (Emergency) to 7 (Debug)',
  2042. `link` text COMMENT 'Link to view the result of the event.',
  2043. `location` text NOT NULL COMMENT 'URL of the origin of the event.',
  2044. `referer` text COMMENT 'URL of referring page.',
  2045. `hostname` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'Hostname of the user who triggered the event.',
  2046. `timestamp` int(11) NOT NULL DEFAULT '0' COMMENT 'Unix timestamp of when event occurred.',
  2047. PRIMARY KEY (`wid`),
  2048. KEY `type` (`type`),
  2049. KEY `uid` (`uid`),
  2050. KEY `severity` (`severity`)
  2051. ) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=utf8mb4 COMMENT='Table that contains logs of all system events.';
  2052. /*!40101 SET character_set_client = @saved_cs_client */;
  2053. --
  2054. -- Dumping data for table `watchdog`
  2055. --
  2056. LOCK TABLES `watchdog` WRITE;
  2057. /*!40000 ALTER TABLE `watchdog` DISABLE KEYS */;
  2058. INSERT INTO `watchdog` VALUES (1,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:5:\"dblog\";}',6,'','http://drupal-vue.docksal/core/install.php/?_format=json&id=1&langcode=en&op=do&op=do_nojs&profile=standard&rewrite=ok&rewrite=ok','http://drupal-vue.docksal/core/install.php?rewrite=ok&langcode=en&profile=standard&id=1&op=start','172.21.0.5',1576038055),(2,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"file\";}',6,'','http://drupal-vue.docksal/core/install.php/?_format=json&id=1&langcode=en&op=do&op=do_nojs&profile=standard&rewrite=ok&rewrite=ok','http://drupal-vue.docksal/core/install.php?rewrite=ok&langcode=en&profile=standard&id=1&op=start','172.21.0.5',1576038065),(3,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:6:\"filter\";}',6,'','http://drupal-vue.docksal/core/install.php/?_format=json&id=1&langcode=en&op=do&op=do_nojs&profile=standard&rewrite=ok&rewrite=ok','http://drupal-vue.docksal/core/install.php?rewrite=ok&langcode=en&profile=standard&id=1&op=start','172.21.0.5',1576038074),(4,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"text\";}',6,'','http://drupal-vue.docksal/core/install.php/?_format=json&id=1&langcode=en&op=do&op=do_nojs&profile=standard&rewrite=ok&rewrite=ok','http://drupal-vue.docksal/core/install.php?rewrite=ok&langcode=en&profile=standard&id=1&op=start','172.21.0.5',1576038083),(5,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:7:\"options\";}',6,'','http://drupal-vue.docksal/core/install.php/?_format=json&id=1&langcode=en&op=do&op=do_nojs&profile=standard&rewrite=ok&rewrite=ok','http://drupal-vue.docksal/core/install.php?rewrite=ok&langcode=en&profile=standard&id=1&op=start','172.21.0.5',1576038093),(6,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:5:\"block\";}',6,'','http://drupal-vue.docksal/core/install.php/?_format=json&id=1&langcode=en&op=do&op=do_nojs&profile=standard&rewrite=ok&rewrite=ok','http://drupal-vue.docksal/core/install.php?rewrite=ok&langcode=en&profile=standard&id=1&op=start','172.21.0.5',1576038108),(7,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:13:\"block_content\";}',6,'','http://drupal-vue.docksal/core/install.php/?_format=json&id=1&langcode=en&op=do&op=do_nojs&profile=standard&rewrite=ok&rewrite=ok','http://drupal-vue.docksal/core/install.php?rewrite=ok&langcode=en&profile=standard&id=1&op=start','172.21.0.5',1576038122),(8,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"node\";}',6,'','http://drupal-vue.docksal/core/install.php/?_format=json&id=1&langcode=en&op=do&op=do_nojs&profile=standard&rewrite=ok&rewrite=ok','http://drupal-vue.docksal/core/install.php?rewrite=ok&langcode=en&profile=standard&id=1&op=start','172.21.0.5',1576038133),(9,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:10:\"breakpoint\";}',6,'','http://drupal-vue.docksal/core/install.php/?_format=json&id=1&langcode=en&op=do&op=do_nojs&profile=standard&rewrite=ok&rewrite=ok','http://drupal-vue.docksal/core/install.php?rewrite=ok&langcode=en&profile=standard&id=1&op=start','172.21.0.5',1576038141),(10,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:6:\"editor\";}',6,'','http://drupal-vue.docksal/core/install.php/?_format=json&id=1&langcode=en&op=do&op=do_nojs&profile=standard&rewrite=ok&rewrite=ok','http://drupal-vue.docksal/core/install.php?rewrite=ok&langcode=en&profile=standard&id=1&op=start','172.21.0.5',1576038150),(11,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:8:\"ckeditor\";}',6,'','http://drupal-vue.docksal/core/install.php/?_format=json&id=1&langcode=en&op=do&op=do_nojs&profile=standard&rewrite=ok&rewrite=ok','http://drupal-vue.docksal/core/install.php?rewrite=ok&langcode=en&profile=standard&id=1&op=start','172.21.0.5',1576038158),(12,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:7:\"comment\";}',6,'','http://drupal-vue.docksal/core/install.php/?_format=json&id=1&langcode=en&op=do&op=do_nojs&profile=standard&rewrite=ok&rewrite=ok','http://drupal-vue.docksal/core/install.php?rewrite=ok&langco
  2059. /*!40000 ALTER TABLE `watchdog` ENABLE KEYS */;
  2060. UNLOCK TABLES;
  2061. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  2062. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  2063. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  2064. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  2065. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  2066. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  2067. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  2068. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  2069. -- Dump completed on 2019-12-11 5:23:03