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.

2584 lines
1.3 MiB

  1. -- MySQL dump 10.13 Distrib 5.6.43, for Linux (x86_64)
  2. --
  3. -- Host: localhost Database: default
  4. -- ------------------------------------------------------
  5. -- Server version 5.6.43
  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 utf8mb4 */;
  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 `actions`
  18. --
  19. DROP TABLE IF EXISTS `actions`;
  20. /*!40101 SET @saved_cs_client = @@character_set_client */;
  21. /*!40101 SET character_set_client = utf8 */;
  22. CREATE TABLE `actions` (
  23. `aid` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Primary Key: Unique actions ID.',
  24. `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'The object that that action acts on (node, user, comment, system or custom types.)',
  25. `callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'The callback function that executes when the action runs.',
  26. `parameters` longblob NOT NULL COMMENT 'Parameters to be passed to the callback function.',
  27. `label` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Label of the action.',
  28. PRIMARY KEY (`aid`)
  29. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores action information.';
  30. /*!40101 SET character_set_client = @saved_cs_client */;
  31. --
  32. -- Dumping data for table `actions`
  33. --
  34. LOCK TABLES `actions` WRITE;
  35. /*!40000 ALTER TABLE `actions` DISABLE KEYS */;
  36. INSERT INTO `actions` VALUES ('comment_publish_action','comment','comment_publish_action','','Publish comment'),('comment_save_action','comment','comment_save_action','','Save comment'),('comment_unpublish_action','comment','comment_unpublish_action','','Unpublish comment'),('node_make_sticky_action','node','node_make_sticky_action','','Make content sticky'),('node_make_unsticky_action','node','node_make_unsticky_action','','Make content unsticky'),('node_promote_action','node','node_promote_action','','Promote content to front page'),('node_publish_action','node','node_publish_action','','Publish content'),('node_save_action','node','node_save_action','','Save content'),('node_unpromote_action','node','node_unpromote_action','','Remove content from front page'),('node_unpublish_action','node','node_unpublish_action','','Unpublish content'),('system_block_ip_action','user','system_block_ip_action','','Ban IP address of current user'),('user_block_user_action','user','user_block_user_action','','Block current user');
  37. /*!40000 ALTER TABLE `actions` ENABLE KEYS */;
  38. UNLOCK TABLES;
  39. --
  40. -- Table structure for table `authmap`
  41. --
  42. DROP TABLE IF EXISTS `authmap`;
  43. /*!40101 SET @saved_cs_client = @@character_set_client */;
  44. /*!40101 SET character_set_client = utf8 */;
  45. CREATE TABLE `authmap` (
  46. `aid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique authmap ID.',
  47. `uid` int(11) NOT NULL DEFAULT '0' COMMENT 'User’s users.uid.',
  48. `authname` varchar(128) NOT NULL DEFAULT '' COMMENT 'Unique authentication name.',
  49. `module` varchar(128) NOT NULL DEFAULT '' COMMENT 'Module which is controlling the authentication.',
  50. PRIMARY KEY (`aid`),
  51. UNIQUE KEY `authname` (`authname`),
  52. KEY `uid_module` (`uid`,`module`)
  53. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores distributed authentication mapping.';
  54. /*!40101 SET character_set_client = @saved_cs_client */;
  55. --
  56. -- Dumping data for table `authmap`
  57. --
  58. LOCK TABLES `authmap` WRITE;
  59. /*!40000 ALTER TABLE `authmap` DISABLE KEYS */;
  60. /*!40000 ALTER TABLE `authmap` ENABLE KEYS */;
  61. UNLOCK TABLES;
  62. --
  63. -- Table structure for table `batch`
  64. --
  65. DROP TABLE IF EXISTS `batch`;
  66. /*!40101 SET @saved_cs_client = @@character_set_client */;
  67. /*!40101 SET character_set_client = utf8 */;
  68. CREATE TABLE `batch` (
  69. `bid` int(10) unsigned NOT NULL COMMENT 'Primary Key: Unique batch ID.',
  70. `token` varchar(64) 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.',
  71. `timestamp` int(11) NOT NULL COMMENT 'A Unix timestamp indicating when this batch was submitted for processing. Stale batches are purged at cron time.',
  72. `batch` longblob COMMENT 'A serialized array containing the processing data for the batch.',
  73. PRIMARY KEY (`bid`),
  74. KEY `token` (`token`)
  75. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores details about batches (processes that run in...';
  76. /*!40101 SET character_set_client = @saved_cs_client */;
  77. --
  78. -- Dumping data for table `batch`
  79. --
  80. LOCK TABLES `batch` WRITE;
  81. /*!40000 ALTER TABLE `batch` DISABLE KEYS */;
  82. /*!40000 ALTER TABLE `batch` ENABLE KEYS */;
  83. UNLOCK TABLES;
  84. --
  85. -- Table structure for table `block`
  86. --
  87. DROP TABLE IF EXISTS `block`;
  88. /*!40101 SET @saved_cs_client = @@character_set_client */;
  89. /*!40101 SET character_set_client = utf8 */;
  90. CREATE TABLE `block` (
  91. `bid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique block ID.',
  92. `module` varchar(64) NOT NULL DEFAULT '' COMMENT 'The module from which the block originates; for example, ’user’ for the Who’s Online block, and ’block’ for any custom blocks.',
  93. `delta` varchar(32) NOT NULL DEFAULT '0' COMMENT 'Unique ID for block within a module.',
  94. `theme` varchar(64) NOT NULL DEFAULT '' COMMENT 'The theme under which the block settings apply.',
  95. `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Block enabled status. (1 = enabled, 0 = disabled)',
  96. `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'Block weight within region.',
  97. `region` varchar(64) NOT NULL DEFAULT '' COMMENT 'Theme region within which the block is set.',
  98. `custom` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Flag to indicate how users may control visibility of the block. (0 = Users cannot control, 1 = On by default, but can be hidden, 2 = Hidden by default, but can be shown)',
  99. `visibility` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Flag to indicate how to show blocks on pages. (0 = Show on all pages except listed pages, 1 = Show only on listed pages, 2 = Use custom PHP code to determine visibility)',
  100. `pages` text NOT NULL COMMENT 'Contents of the "Pages" block; contains either a list of paths on which to include/exclude the block or PHP code, depending on "visibility" setting.',
  101. `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'Custom title for the block. (Empty string will use block default title, <none> will remove the title, text will cause block to use specified title.)',
  102. `cache` tinyint(4) NOT NULL DEFAULT '1' COMMENT 'Binary flag to indicate block cache mode. (-2: Custom cache, -1: Do not cache, 1: Cache per role, 2: Cache per user, 4: Cache per page, 8: Block cache global) See DRUPAL_CACHE_* constants in ../includes/common.inc for more detailed information.',
  103. PRIMARY KEY (`bid`),
  104. UNIQUE KEY `tmd` (`theme`,`module`,`delta`),
  105. KEY `list` (`theme`,`status`,`region`,`weight`,`module`)
  106. ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores block settings, such as region and visibility...';
  107. /*!40101 SET character_set_client = @saved_cs_client */;
  108. --
  109. -- Dumping data for table `block`
  110. --
  111. LOCK TABLES `block` WRITE;
  112. /*!40000 ALTER TABLE `block` DISABLE KEYS */;
  113. INSERT INTO `block` VALUES (1,'system','main','bartik',1,0,'content',0,0,'','',-1),(2,'search','form','bartik',1,-1,'sidebar_first',0,0,'','',-1),(3,'node','recent','seven',1,10,'dashboard_main',0,0,'','',-1),(4,'user','login','bartik',1,0,'sidebar_first',0,0,'','',-1),(5,'system','navigation','bartik',1,0,'sidebar_first',0,0,'','',-1),(6,'system','powered-by','bartik',1,10,'footer',0,0,'','',-1),(7,'system','help','bartik',1,0,'help',0,0,'','',-1),(8,'system','main','seven',1,0,'content',0,0,'','',-1),(9,'system','help','seven',1,0,'help',0,0,'','',-1),(10,'user','login','seven',1,10,'content',0,0,'','',-1),(11,'user','new','seven',1,0,'dashboard_sidebar',0,0,'','',-1),(12,'search','form','seven',1,-10,'dashboard_sidebar',0,0,'','',-1),(13,'comment','recent','bartik',0,0,'-1',0,0,'','',1),(14,'node','syndicate','bartik',0,0,'-1',0,0,'','',-1),(15,'node','recent','bartik',0,0,'-1',0,0,'','',1),(16,'shortcut','shortcuts','bartik',0,0,'-1',0,0,'','',-1),(17,'system','management','bartik',0,0,'-1',0,0,'','',-1),(18,'system','user-menu','bartik',0,0,'-1',0,0,'','',-1),(19,'system','main-menu','bartik',0,0,'-1',0,0,'','',-1),(20,'user','new','bartik',0,0,'-1',0,0,'','',1),(21,'user','online','bartik',0,0,'-1',0,0,'','',-1),(22,'comment','recent','seven',1,0,'dashboard_inactive',0,0,'','',1),(23,'node','syndicate','seven',0,0,'-1',0,0,'','',-1),(24,'shortcut','shortcuts','seven',0,0,'-1',0,0,'','',-1),(25,'system','powered-by','seven',0,10,'-1',0,0,'','',-1),(26,'system','navigation','seven',0,0,'-1',0,0,'','',-1),(27,'system','management','seven',0,0,'-1',0,0,'','',-1),(28,'system','user-menu','seven',0,0,'-1',0,0,'','',-1),(29,'system','main-menu','seven',0,0,'-1',0,0,'','',-1),(30,'user','online','seven',1,0,'dashboard_inactive',0,0,'','',-1);
  114. /*!40000 ALTER TABLE `block` ENABLE KEYS */;
  115. UNLOCK TABLES;
  116. --
  117. -- Table structure for table `block_custom`
  118. --
  119. DROP TABLE IF EXISTS `block_custom`;
  120. /*!40101 SET @saved_cs_client = @@character_set_client */;
  121. /*!40101 SET character_set_client = utf8 */;
  122. CREATE TABLE `block_custom` (
  123. `bid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The block’s block.bid.',
  124. `body` longtext COMMENT 'Block contents.',
  125. `info` varchar(128) NOT NULL DEFAULT '' COMMENT 'Block description.',
  126. `format` varchar(255) DEFAULT NULL COMMENT 'The filter_format.format of the block body.',
  127. PRIMARY KEY (`bid`),
  128. UNIQUE KEY `info` (`info`)
  129. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores contents of custom-made blocks.';
  130. /*!40101 SET character_set_client = @saved_cs_client */;
  131. --
  132. -- Dumping data for table `block_custom`
  133. --
  134. LOCK TABLES `block_custom` WRITE;
  135. /*!40000 ALTER TABLE `block_custom` DISABLE KEYS */;
  136. /*!40000 ALTER TABLE `block_custom` ENABLE KEYS */;
  137. UNLOCK TABLES;
  138. --
  139. -- Table structure for table `block_node_type`
  140. --
  141. DROP TABLE IF EXISTS `block_node_type`;
  142. /*!40101 SET @saved_cs_client = @@character_set_client */;
  143. /*!40101 SET character_set_client = utf8 */;
  144. CREATE TABLE `block_node_type` (
  145. `module` varchar(64) NOT NULL COMMENT 'The block’s origin module, from block.module.',
  146. `delta` varchar(32) NOT NULL COMMENT 'The block’s unique delta within module, from block.delta.',
  147. `type` varchar(32) NOT NULL COMMENT 'The machine-readable name of this type from node_type.type.',
  148. PRIMARY KEY (`module`,`delta`,`type`),
  149. KEY `type` (`type`)
  150. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Sets up display criteria for blocks based on content types';
  151. /*!40101 SET character_set_client = @saved_cs_client */;
  152. --
  153. -- Dumping data for table `block_node_type`
  154. --
  155. LOCK TABLES `block_node_type` WRITE;
  156. /*!40000 ALTER TABLE `block_node_type` DISABLE KEYS */;
  157. /*!40000 ALTER TABLE `block_node_type` ENABLE KEYS */;
  158. UNLOCK TABLES;
  159. --
  160. -- Table structure for table `block_role`
  161. --
  162. DROP TABLE IF EXISTS `block_role`;
  163. /*!40101 SET @saved_cs_client = @@character_set_client */;
  164. /*!40101 SET character_set_client = utf8 */;
  165. CREATE TABLE `block_role` (
  166. `module` varchar(64) NOT NULL COMMENT 'The block’s origin module, from block.module.',
  167. `delta` varchar(32) NOT NULL COMMENT 'The block’s unique delta within module, from block.delta.',
  168. `rid` int(10) unsigned NOT NULL COMMENT 'The user’s role ID from users_roles.rid.',
  169. PRIMARY KEY (`module`,`delta`,`rid`),
  170. KEY `rid` (`rid`)
  171. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Sets up access permissions for blocks based on user roles';
  172. /*!40101 SET character_set_client = @saved_cs_client */;
  173. --
  174. -- Dumping data for table `block_role`
  175. --
  176. LOCK TABLES `block_role` WRITE;
  177. /*!40000 ALTER TABLE `block_role` DISABLE KEYS */;
  178. /*!40000 ALTER TABLE `block_role` ENABLE KEYS */;
  179. UNLOCK TABLES;
  180. --
  181. -- Table structure for table `blocked_ips`
  182. --
  183. DROP TABLE IF EXISTS `blocked_ips`;
  184. /*!40101 SET @saved_cs_client = @@character_set_client */;
  185. /*!40101 SET character_set_client = utf8 */;
  186. CREATE TABLE `blocked_ips` (
  187. `iid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: unique ID for IP addresses.',
  188. `ip` varchar(40) NOT NULL DEFAULT '' COMMENT 'IP address',
  189. PRIMARY KEY (`iid`),
  190. KEY `blocked_ip` (`ip`)
  191. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores blocked IP addresses.';
  192. /*!40101 SET character_set_client = @saved_cs_client */;
  193. --
  194. -- Dumping data for table `blocked_ips`
  195. --
  196. LOCK TABLES `blocked_ips` WRITE;
  197. /*!40000 ALTER TABLE `blocked_ips` DISABLE KEYS */;
  198. /*!40000 ALTER TABLE `blocked_ips` ENABLE KEYS */;
  199. UNLOCK TABLES;
  200. --
  201. -- Table structure for table `cache`
  202. --
  203. DROP TABLE IF EXISTS `cache`;
  204. /*!40101 SET @saved_cs_client = @@character_set_client */;
  205. /*!40101 SET character_set_client = utf8 */;
  206. CREATE TABLE `cache` (
  207. `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  208. `data` longblob COMMENT 'A collection of data to cache.',
  209. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  210. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  211. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  212. PRIMARY KEY (`cid`),
  213. KEY `expire` (`expire`)
  214. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Generic cache table for caching things not separated out...';
  215. /*!40101 SET character_set_client = @saved_cs_client */;
  216. --
  217. -- Dumping data for table `cache`
  218. --
  219. LOCK TABLES `cache` WRITE;
  220. /*!40000 ALTER TABLE `cache` DISABLE KEYS */;
  221. INSERT INTO `cache` VALUES ('entity_info:en','a:7:{s:7:\"comment\";a:23:{s:5:\"label\";s:7:\"Comment\";s:10:\"base table\";s:7:\"comment\";s:12:\"uri callback\";s:11:\"comment_uri\";s:9:\"fieldable\";b:1;s:16:\"controller class\";s:17:\"CommentController\";s:11:\"entity keys\";a:5:{s:2:\"id\";s:3:\"cid\";s:6:\"bundle\";s:9:\"node_type\";s:5:\"label\";s:7:\"subject\";s:8:\"language\";s:8:\"language\";s:8:\"revision\";s:0:\"\";}s:7:\"bundles\";a:4:{s:20:\"comment_node_article\";a:4:{s:5:\"label\";s:15:\"Article comment\";s:11:\"node bundle\";s:7:\"article\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:44:\"admin/structure/types/manage/article/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}s:5:\"title\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:7:\"created\";a:3:{s:10:\"predicates\";a:2:{i:0;s:7:\"dc:date\";i:1;s:10:\"dc:created\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:7:\"changed\";a:3:{s:10:\"predicates\";a:1:{i:0;s:11:\"dc:modified\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}s:3:\"uid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:has_creator\";}s:4:\"type\";s:3:\"rel\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}}}s:17:\"comment_node_page\";a:4:{s:5:\"label\";s:18:\"Basic page comment\";s:11:\"node bundle\";s:4:\"page\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:41:\"admin/structure/types/manage/page/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}s:5:\"title\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:7:\"created\";a:3:{s:10:\"predicates\";a:2:{i:0;s:7:\"dc:date\";i:1;s:10:\"dc:created\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:7:\"changed\";a:3:{s:10:\"predicates\";a:1:{i:0;s:11:\"dc:modified\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}s:3:\"uid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:has_creator\";}s:4:\"type\";s:3:\"rel\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}}}s:34:\"comment_node_should_have_been_page\";a:4:{s:5:\"label\";s:29:\"Should Have Been Page comment\";s:11:\"node bundle\";s:21:\"should_have_been_page\";s:5:\"admin\";a:4:{s:4:\"path\";s:55:\"admin/structure/types/manage/%comment_node_type/comment\";s:15:\"bundle argument\";i:4;s:9:\"real path\";s:58:\"admin/structure/types/manage/should-have-been-page/comment\";s:16:\"access arguments\";a:1:{i:0;s:24:\"administer content types\";}}s:11:\"rdf_mapping\";a:8:{s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Post\";i:1;s:13:\"sioct:Comment\";}s:5:\"title\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:7:\"created\";a:3:{s:10:\"predicates\";a:2:{i:0;s:7:\"dc:date\";i:1;s:10:\"dc:created\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:7:\"changed\";a:3:{s:10:\"predicates\";a:1:{i:0;s:11:\"dc:modified\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:12:\"comment_body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"pid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:13:\"sioc:reply_of\";}s:4:\"type\";s:3:\"rel\";}s:3:\"uid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:has_creator\";}s:4:\"type\";s:3:\"rel\";}s:4:\"name\";a:1:{s:10:\"p
  222. /*!40000 ALTER TABLE `cache` ENABLE KEYS */;
  223. UNLOCK TABLES;
  224. --
  225. -- Table structure for table `cache_block`
  226. --
  227. DROP TABLE IF EXISTS `cache_block`;
  228. /*!40101 SET @saved_cs_client = @@character_set_client */;
  229. /*!40101 SET character_set_client = utf8 */;
  230. CREATE TABLE `cache_block` (
  231. `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  232. `data` longblob COMMENT 'A collection of data to cache.',
  233. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  234. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  235. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  236. PRIMARY KEY (`cid`),
  237. KEY `expire` (`expire`)
  238. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Cache table for the Block module to store already built...';
  239. /*!40101 SET character_set_client = @saved_cs_client */;
  240. --
  241. -- Dumping data for table `cache_block`
  242. --
  243. LOCK TABLES `cache_block` WRITE;
  244. /*!40000 ALTER TABLE `cache_block` DISABLE KEYS */;
  245. /*!40000 ALTER TABLE `cache_block` ENABLE KEYS */;
  246. UNLOCK TABLES;
  247. --
  248. -- Table structure for table `cache_bootstrap`
  249. --
  250. DROP TABLE IF EXISTS `cache_bootstrap`;
  251. /*!40101 SET @saved_cs_client = @@character_set_client */;
  252. /*!40101 SET character_set_client = utf8 */;
  253. CREATE TABLE `cache_bootstrap` (
  254. `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  255. `data` longblob COMMENT 'A collection of data to cache.',
  256. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  257. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  258. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  259. PRIMARY KEY (`cid`),
  260. KEY `expire` (`expire`)
  261. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Cache table for data required to bootstrap Drupal, may be...';
  262. /*!40101 SET character_set_client = @saved_cs_client */;
  263. --
  264. -- Dumping data for table `cache_bootstrap`
  265. --
  266. LOCK TABLES `cache_bootstrap` WRITE;
  267. /*!40000 ALTER TABLE `cache_bootstrap` DISABLE KEYS */;
  268. INSERT INTO `cache_bootstrap` VALUES ('bootstrap_modules','a:2:{s:5:\"dblog\";O:8:\"stdClass\":2:{s:4:\"name\";s:5:\"dblog\";s:8:\"filename\";s:26:\"modules/dblog/dblog.module\";}s:7:\"overlay\";O:8:\"stdClass\":2:{s:4:\"name\";s:7:\"overlay\";s:8:\"filename\";s:30:\"modules/overlay/overlay.module\";}}',0,1588735145,1),('hook_info','a:6:{s:20:\"entity_property_info\";a:1:{s:5:\"group\";s:4:\"info\";}s:26:\"entity_property_info_alter\";a:1:{s:5:\"group\";s:4:\"info\";}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\";}}',0,1588735145,1),('lookup_cache','a:11:{s:30:\"cDrupalDefaultEntityController\";s:19:\"includes/entity.inc\";s:20:\"cEntityAPIController\";s:55:\"sites/all/modules/entity/includes/entity.controller.inc\";s:20:\"cSelectQueryExtender\";s:28:\"includes/database/select.inc\";s:19:\"cPagerDefault_mysql\";b:0;s:19:\"iPagerDefault_mysql\";b:0;s:19:\"tPagerDefault_mysql\";b:0;s:16:\"cTableSort_mysql\";b:0;s:16:\"iTableSort_mysql\";b:0;s:16:\"tTableSort_mysql\";b:0;s:26:\"cFieldCollectionItemEntity\";s:62:\"sites/all/modules/field_collection/field_collection.entity.inc\";s:7:\"cEntity\";s:44:\"sites/all/modules/entity/includes/entity.inc\";}',0,1588735339,1),('module_implements','a:143:{s:15:\"stream_wrappers\";a:1:{s:6:\"system\";b:0;}s:23:\"module_implements_alter\";a:1:{s:6:\"entity\";b:0;}s:21:\"stream_wrappers_alter\";a:0:{}s:17:\"url_inbound_alter\";a:0:{}s:12:\"custom_theme\";a:1:{s:6:\"system\";b:0;}s:11:\"admin_paths\";a:8:{s:5:\"block\";b:0;s:16:\"field_collection\";b:0;s:4:\"node\";b:0;s:7:\"overlay\";b:0;s:8:\"shortcut\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;}s:17:\"admin_paths_alter\";a:0:{}s:19:\"menu_get_item_alter\";a:0:{}s:18:\"url_outbound_alter\";a:0:{}s:13:\"library_alter\";a:0:{}s:4:\"init\";a:3:{s:5:\"dblog\";b:0;s:7:\"overlay\";b:0;s:6:\"system\";b:0;}s:24:\"overlay_child_initialize\";a:1:{s:7:\"overlay\";b:0;}s:22:\"menu_site_status_alter\";a:1:{s:4:\"user\";b:0;}s:6:\"schema\";a:16:{s:5:\"block\";b:0;s:7:\"comment\";b:0;s:5:\"dblog\";b:0;s:5:\"field\";b:0;s:16:\"field_collection\";b:0;s:17:\"field_sql_storage\";b:0;s:6:\"filter\";b:0;s:5:\"image\";b:0;s:4:\"menu\";b:0;s:4:\"node\";b:0;s:3:\"rdf\";b:0;s:6:\"search\";b:0;s:8:\"shortcut\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;}s:16:\"field_read_field\";a:0:{}s:12:\"schema_alter\";a:0:{}s:5:\"theme\";a:23:{s:5:\"block\";b:0;s:5:\"color\";b:0;s:7:\"comment\";b:0;s:9:\"dashboard\";b:0;s:5:\"dblog\";b:0;s:6:\"entity\";b:0;s:5:\"field\";b:0;s:16:\"field_collection\";b:0;s:8:\"field_ui\";b:0;s:4:\"file\";b:0;s:6:\"filter\";b:0;s:5:\"image\";b:0;s:4:\"menu\";b:0;s:4:\"node\";b:0;s:7:\"options\";b:0;s:7:\"overlay\";b:0;s:3:\"rdf\";b:0;s:6:\"search\";b:0;s:8:\"shortcut\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:7:\"toolbar\";b:0;s:4:\"user\";b:0;}s:11:\"entity_info\";a:6:{s:7:\"comment\";b:0;s:16:\"field_collection\";b:0;s:4:\"node\";b:0;s:6:\"system\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;}s:9:\"node_info\";a:0:{}s:11:\"query_alter\";a:0:{}s:24:\"query_translatable_alter\";a:0:{}s:28:\"query_node_type_access_alter\";a:0:{}s:17:\"entity_info_alter\";a:2:{s:3:\"rdf\";b:0;s:6:\"entity\";b:0;}s:11:\"rdf_mapping\";a:4:{s:7:\"comment\";b:0;s:4:\"node\";b:0;s:8:\"taxonomy\";b:0;s:4:\"user\";b:0;}s:20:\"theme_registry_alter\";a:0:{}s:28:\"page_delivery_callback_alter\";a:1:{s:7:\"overlay\";b:0;}s:12:\"element_info\";a:6:{s:10:\"contextual\";b:0;s:8:\"field_ui\";b:0;s:4:\"file\";b:0;s:6:\"filter\";b:0;s:6:\"system\";b:0;s:4:\"user\";b:0;}s:18:\"element_info_alter\";a:0:{}s:10:\"page_build\";a:3:{s:5:\"block\";b:0;s:9:\"dashboard\";b:0;s:7:\"toolbar\";b:0;}s:22:\"query_block_load_alter\";a:0:{}s:16:\"block_list_alter\";a:4:{s:5:\"block\";b:0;s:9:\"dashboard\";b:0;s:4:\"node\";b:0;s:7:\"overlay\";b:0;}s:17:\"dashboard_regions\";a:1:{s:9:\"dashboard\";b:0;}s:23:\"dashboard_regions_alter\";a:0:{}s:11:\"node_grants\";a:0:{}s:16:\"block_view_
  269. /*!40000 ALTER TABLE `cache_bootstrap` ENABLE KEYS */;
  270. UNLOCK TABLES;
  271. --
  272. -- Table structure for table `cache_field`
  273. --
  274. DROP TABLE IF EXISTS `cache_field`;
  275. /*!40101 SET @saved_cs_client = @@character_set_client */;
  276. /*!40101 SET character_set_client = utf8 */;
  277. CREATE TABLE `cache_field` (
  278. `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  279. `data` longblob COMMENT 'A collection of data to cache.',
  280. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  281. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  282. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  283. PRIMARY KEY (`cid`),
  284. KEY `expire` (`expire`)
  285. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Cache table for the Field module to store already built...';
  286. /*!40101 SET character_set_client = @saved_cs_client */;
  287. --
  288. -- Dumping data for table `cache_field`
  289. --
  290. LOCK TABLES `cache_field` WRITE;
  291. /*!40000 ALTER TABLE `cache_field` DISABLE KEYS */;
  292. INSERT INTO `cache_field` VALUES ('field:node:1','a:1:{s:29:\"field_test_paragraphs_content\";a:1:{s:3:\"und\";a:3:{i:0;a:2:{s:5:\"value\";s:1:\"1\";s:11:\"revision_id\";s:1:\"1\";}i:1;a:2:{s:5:\"value\";s:1:\"2\";s:11:\"revision_id\";s:1:\"2\";}i:2;a:2:{s:5:\"value\";s:1:\"3\";s:11:\"revision_id\";s:1:\"3\";}}}}',0,1588737797,1),('field:node:2','a:1:{s:29:\"field_test_paragraphs_content\";a:1:{s:3:\"und\";a:2:{i:0;a:2:{s:5:\"value\";s:1:\"4\";s:11:\"revision_id\";s:1:\"4\";}i:1;a:2:{s:5:\"value\";s:1:\"5\";s:11:\"revision_id\";s:1:\"5\";}}}}',0,1588737797,1),('field:node:3','a:1:{s:29:\"field_test_paragraphs_content\";a:1:{s:3:\"und\";a:2:{i:0;a:2:{s:5:\"value\";s:1:\"6\";s:11:\"revision_id\";s:1:\"6\";}i:1;a:2:{s:5:\"value\";s:1:\"7\";s:11:\"revision_id\";s:1:\"7\";}}}}',0,1588737797,1),('field:node:4','a:1:{s:4:\"body\";a:1:{s:3:\"und\";a:1:{i:0;a:5:{s:5:\"value\";s:1565:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. In hac habitasse platea dictumst. Etiam dignissim diam quis enim lobortis scelerisque fermentum. Orci ac auctor augue mauris. Magna fringilla urna porttitor rhoncus dolor. Auctor neque vitae tempus quam. Bibendum arcu vitae elementum curabitur vitae nunc sed velit dignissim. Enim diam vulputate ut pharetra sit amet aliquam. Nisi vitae suscipit tellus mauris a diam maecenas sed enim. Commodo nulla facilisi nullam vehicula ipsum a. Lobortis feugiat vivamus at augue eget arcu. Tincidunt ornare massa eget egestas purus viverra accumsan. Enim eu turpis egestas pretium aenean. Vestibulum morbi blandit cursus risus at ultrices mi tempus imperdiet. Morbi quis commodo odio aenean sed adipiscing diam. Convallis convallis tellus id interdum velit. Risus in hendrerit gravida rutrum quisque non tellus orci. Felis eget velit aliquet sagittis id consectetur purus.\r\n\r\nEst ante in nibh mauris cursus mattis molestie. Eros in cursus turpis massa. Sed vulputate odio ut enim. Lectus urna duis convallis convallis tellus id. Risus nullam eget felis eget. Ac orci phasellus egestas tellus rutrum tellus pellentesque. Diam volutpat commodo sed egestas egestas fringilla phasellus faucibus. Mauris augue neque gravida in fermentum et sollicitudin ac orci. Nulla pharetra diam sit amet nisl suscipit adipiscing bibendum est. Sed adipiscing diam donec adipiscing tristique risus nec feugiat in. Mattis molestie a iaculis at erat pellentesque adipiscing.\";s:7:\"summary\";s:0:\"\";s:6:\"format\";s:13:\"filtered_html\";s:10:\"safe_value\";s:1577:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. In hac habitasse platea dictumst. Etiam dignissim diam quis enim lobortis scelerisque fermentum. Orci ac auctor augue mauris. Magna fringilla urna porttitor rhoncus dolor. Auctor neque vitae tempus quam. Bibendum arcu vitae elementum curabitur vitae nunc sed velit dignissim. Enim diam vulputate ut pharetra sit amet aliquam. Nisi vitae suscipit tellus mauris a diam maecenas sed enim. Commodo nulla facilisi nullam vehicula ipsum a. Lobortis feugiat vivamus at augue eget arcu. Tincidunt ornare massa eget egestas purus viverra accumsan. Enim eu turpis egestas pretium aenean. Vestibulum morbi blandit cursus risus at ultrices mi tempus imperdiet. Morbi quis commodo odio aenean sed adipiscing diam. Convallis convallis tellus id interdum velit. Risus in hendrerit gravida rutrum quisque non tellus orci. Felis eget velit aliquet sagittis id consectetur purus.</p>\n<p>Est ante in nibh mauris cursus mattis molestie. Eros in cursus turpis massa. Sed vulputate odio ut enim. Lectus urna duis convallis convallis tellus id. Risus nullam eget felis eget. Ac orci phasellus egestas tellus rutrum tellus pellentesque. Diam volutpat commodo sed egestas egestas fringilla phasellus faucibus. Mauris augue neque gravida in fermentum et sollicitudin ac orci. Nulla pharetra diam sit amet nisl suscipit adipiscing bibendum est. Sed adipiscing diam donec adipiscing tristique risus nec feugiat in. Mattis molestie a iaculis a
  293. /*!40000 ALTER TABLE `cache_field` ENABLE KEYS */;
  294. UNLOCK TABLES;
  295. --
  296. -- Table structure for table `cache_filter`
  297. --
  298. DROP TABLE IF EXISTS `cache_filter`;
  299. /*!40101 SET @saved_cs_client = @@character_set_client */;
  300. /*!40101 SET character_set_client = utf8 */;
  301. CREATE TABLE `cache_filter` (
  302. `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  303. `data` longblob COMMENT 'A collection of data to cache.',
  304. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  305. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  306. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  307. PRIMARY KEY (`cid`),
  308. KEY `expire` (`expire`)
  309. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Cache table for the Filter module to store already...';
  310. /*!40101 SET character_set_client = @saved_cs_client */;
  311. --
  312. -- Dumping data for table `cache_filter`
  313. --
  314. LOCK TABLES `cache_filter` WRITE;
  315. /*!40000 ALTER TABLE `cache_filter` DISABLE KEYS */;
  316. /*!40000 ALTER TABLE `cache_filter` ENABLE KEYS */;
  317. UNLOCK TABLES;
  318. --
  319. -- Table structure for table `cache_form`
  320. --
  321. DROP TABLE IF EXISTS `cache_form`;
  322. /*!40101 SET @saved_cs_client = @@character_set_client */;
  323. /*!40101 SET character_set_client = utf8 */;
  324. CREATE TABLE `cache_form` (
  325. `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  326. `data` longblob COMMENT 'A collection of data to cache.',
  327. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  328. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  329. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  330. PRIMARY KEY (`cid`),
  331. KEY `expire` (`expire`)
  332. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Cache table for the form system to store recently built...';
  333. /*!40101 SET character_set_client = @saved_cs_client */;
  334. --
  335. -- Dumping data for table `cache_form`
  336. --
  337. LOCK TABLES `cache_form` WRITE;
  338. /*!40000 ALTER TABLE `cache_form` DISABLE KEYS */;
  339. INSERT INTO `cache_form` VALUES ('form_form-3XLxanKbkXeV1EUUizqgyZeOsXjCb9m_VDtO0YNdWeA','a:28:{s:12:\"#entity_type\";s:21:\"field_collection_item\";s:7:\"#bundle\";s:29:\"field_test_paragraphs_content\";s:10:\"#view_mode\";s:7:\"default\";s:7:\"#fields\";a:2:{i:0;s:14:\"field_fc_title\";i:1;s:13:\"field_fc_body\";}s:6:\"#extra\";a:0:{}s:6:\"fields\";a:10:{s:5:\"#type\";s:14:\"field_ui_table\";s:5:\"#tree\";b:1;s:7:\"#header\";a:5:{i:0;s:5:\"Field\";i:1;s:6:\"Weight\";i:2;s:6:\"Parent\";i:3;s:5:\"Label\";i:4;a:2:{s:4:\"data\";s:6:\"Format\";s:7:\"colspan\";i:3;}}s:8:\"#regions\";a:2:{s:7:\"visible\";a:1:{s:7:\"message\";s:22:\"No field is displayed.\";}s:6:\"hidden\";a:2:{s:5:\"title\";s:6:\"Hidden\";s:7:\"message\";s:19:\"No field is hidden.\";}}s:15:\"#parent_options\";a:0:{}s:11:\"#attributes\";a:2:{s:5:\"class\";a:1:{i:0;s:17:\"field-ui-overview\";}s:2:\"id\";s:22:\"field-display-overview\";}s:7:\"#prefix\";s:41:\"<div id=\"field-display-overview-wrapper\">\";s:7:\"#suffix\";s:6:\"</div>\";s:14:\"field_fc_title\";a:11:{s:11:\"#attributes\";a:1:{s:5:\"class\";a:2:{i:0;s:9:\"draggable\";i:1;s:14:\"tabledrag-leaf\";}}s:9:\"#row_type\";s:5:\"field\";s:16:\"#region_callback\";s:36:\"field_ui_display_overview_row_region\";s:12:\"#js_settings\";a:2:{s:10:\"rowHandler\";s:5:\"field\";s:16:\"defaultFormatter\";s:12:\"text_default\";}s:10:\"human_name\";a:1:{s:7:\"#markup\";s:5:\"Title\";}s:6:\"weight\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:16:\"Weight for Title\";s:14:\"#title_display\";s:9:\"invisible\";s:14:\"#default_value\";s:1:\"0\";s:5:\"#size\";i:3;s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:12:\"field-weight\";}}}s:14:\"parent_wrapper\";a:2:{s:6:\"parent\";a:7:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:23:\"Label display for Title\";s:14:\"#title_display\";s:9:\"invisible\";s:8:\"#options\";a:0:{}s:12:\"#empty_value\";s:0:\"\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:12:\"field-parent\";}}s:8:\"#parents\";a:3:{i:0;s:6:\"fields\";i:1;s:14:\"field_fc_title\";i:2;s:6:\"parent\";}}s:11:\"hidden_name\";a:3:{s:5:\"#type\";s:6:\"hidden\";s:14:\"#default_value\";s:14:\"field_fc_title\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:10:\"field-name\";}}}}s:5:\"label\";a:5:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:23:\"Label display for Title\";s:14:\"#title_display\";s:9:\"invisible\";s:8:\"#options\";a:3:{s:5:\"above\";s:5:\"Above\";s:6:\"inline\";s:6:\"Inline\";s:6:\"hidden\";s:8:\"<Hidden>\";}s:14:\"#default_value\";s:6:\"hidden\";}s:6:\"format\";a:2:{s:4:\"type\";a:7:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:19:\"Formatter for Title\";s:14:\"#title_display\";s:9:\"invisible\";s:8:\"#options\";a:4:{s:12:\"text_default\";s:7:\"Default\";s:10:\"text_plain\";s:10:\"Plain text\";s:12:\"text_trimmed\";s:7:\"Trimmed\";s:6:\"hidden\";s:8:\"<Hidden>\";}s:14:\"#default_value\";s:12:\"text_default\";s:8:\"#parents\";a:3:{i:0;s:6:\"fields\";i:1;s:14:\"field_fc_title\";i:2;s:4:\"type\";}s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:20:\"field-formatter-type\";}}}s:18:\"settings_edit_form\";a:0:{}}s:16:\"settings_summary\";a:0:{}s:13:\"settings_edit\";a:0:{}}s:13:\"field_fc_body\";a:11:{s:11:\"#attributes\";a:1:{s:5:\"class\";a:2:{i:0;s:9:\"draggable\";i:1;s:14:\"tabledrag-leaf\";}}s:9:\"#row_type\";s:5:\"field\";s:16:\"#region_callback\";s:36:\"field_ui_display_overview_row_region\";s:12:\"#js_settings\";a:2:{s:10:\"rowHandler\";s:5:\"field\";s:16:\"defaultFormatter\";s:12:\"text_default\";}s:10:\"human_name\";a:1:{s:7:\"#markup\";s:4:\"Body\";}s:6:\"weight\";a:6:{s:5:\"#type\";s:9:\"textfield\";s:6:\"#title\";s:15:\"Weight for Body\";s:14:\"#title_display\";s:9:\"invisible\";s:14:\"#default_value\";s:1:\"1\";s:5:\"#size\";i:3;s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:12:\"field-weight\";}}}s:14:\"parent_wrapper\";a:2:{s:6:\"parent\";a:7:{s:5:\"#type\";s:6:\"select\";s:6:\"#title\";s:22:\"Label display for Body\";s:14:\"#title_display\";s:9:\"invisible\";s:8:\"#options\";a:0:{}s:12:\"#empty_value\";s:0:\"\";s:11:\"#attributes\";a:1:{s:5:\"class\";a:1:{i:0;s:12:\"field-pa
  340. /*!40000 ALTER TABLE `cache_form` ENABLE KEYS */;
  341. UNLOCK TABLES;
  342. --
  343. -- Table structure for table `cache_image`
  344. --
  345. DROP TABLE IF EXISTS `cache_image`;
  346. /*!40101 SET @saved_cs_client = @@character_set_client */;
  347. /*!40101 SET character_set_client = utf8 */;
  348. CREATE TABLE `cache_image` (
  349. `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  350. `data` longblob COMMENT 'A collection of data to cache.',
  351. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  352. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  353. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  354. PRIMARY KEY (`cid`),
  355. KEY `expire` (`expire`)
  356. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Cache table used to store information about image...';
  357. /*!40101 SET character_set_client = @saved_cs_client */;
  358. --
  359. -- Dumping data for table `cache_image`
  360. --
  361. LOCK TABLES `cache_image` WRITE;
  362. /*!40000 ALTER TABLE `cache_image` DISABLE KEYS */;
  363. /*!40000 ALTER TABLE `cache_image` ENABLE KEYS */;
  364. UNLOCK TABLES;
  365. --
  366. -- Table structure for table `cache_menu`
  367. --
  368. DROP TABLE IF EXISTS `cache_menu`;
  369. /*!40101 SET @saved_cs_client = @@character_set_client */;
  370. /*!40101 SET character_set_client = utf8 */;
  371. CREATE TABLE `cache_menu` (
  372. `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  373. `data` longblob COMMENT 'A collection of data to cache.',
  374. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  375. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  376. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  377. PRIMARY KEY (`cid`),
  378. KEY `expire` (`expire`)
  379. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Cache table for the menu system to store router...';
  380. /*!40101 SET character_set_client = @saved_cs_client */;
  381. --
  382. -- Dumping data for table `cache_menu`
  383. --
  384. LOCK TABLES `cache_menu` WRITE;
  385. /*!40000 ALTER TABLE `cache_menu` DISABLE KEYS */;
  386. INSERT INTO `cache_menu` VALUES ('links:main-menu:all:0:en:0','a:2:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";N;}',0,1588737648,1),('links:main-menu:page:admin/content:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1588737797,1),('links:main-menu:page:admin/structure/types/manage/page/fields:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1588737641,1),('links:main-menu:page:admin/structure/types/manage/should-have-been-page/fields/body/delete:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1588737794,1),('links:main-menu:page:admin/structure/types/manage/should-have-been-page/fields/field_should_be_page_body/field-settings:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1588737787,1),('links:main-menu:page:admin/structure/types/manage/should-have-been-page/fields/field_should_be_page_body:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1588737789,1),('links:main-menu:page:admin/structure/types/manage/should-have-been-page/fields:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1588737632,1),('links:main-menu:page:admin/structure/types:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1588737638,1),('links:main-menu:page:admin/structure:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1588737635,1),('links:main-menu:page:node/7/edit:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1588737799,1),('links:main-menu:page:node/7:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1588737670,1),('links:main-menu:page:node/add/should-have-been-page:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1588737648,1),('links:main-menu:page:node/add:en:1:1','a:4:{s:9:\"min_depth\";i:1;s:9:\"max_depth\";i:1;s:8:\"expanded\";a:1:{i:0;i:0;}s:12:\"active_trail\";a:1:{i:0;i:0;}}',0,1588737644,1),('links:main-menu:tree-data:en:9ec01ec58bf82a695e4acd636af283e0585fe8cd8a6e54eb140188a3e284ab1c','a:2:{s:4:\"tree\";a:1:{i:219;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"219\";s:4:\"plid\";s:1:\"0\";s:9:\"link_path\";s:7:\"<front>\";s:11:\"router_path\";s:0:\"\";s:10:\"link_title\";s:4:\"Home\";s:7:\"options\";s:6:\"a:0:{}\";s:6:\"module\";s:4:\"menu\";s:6:\"hidden\";s:1:\"0\";s:8:\"external\";s:1:\"1\";s:12:\"has_children\";s:1:\"0\";s:8:\"expanded\";s:1:\"0\";s:6:\"weight\";s:1:\"0\";s:5:\"depth\";s:1:\"1\";s:10:\"customized\";s:1:\"0\";s:2:\"p1\";s:3:\"219\";s:2:\"p2\";s:1:\"0\";s:2:\"p3\";s:1:\"0\";s:2:\"p4\";s:1:\"0\";s:2:\"p5\";s:1:\"0\";s:2:\"p6\";s:1:\"0\";s:2:\"p7\";s:1:\"0\";s:2:\"p8\";s:1:\"0\";s:2:\"p9\";s:1:\"0\";s:7:\"updated\";s:1:\"0\";s:14:\"load_functions\";N;s:16:\"to_arg_functions\";N;s:15:\"access_callback\";N;s:16:\"access_arguments\";N;s:13:\"page_callback\";N;s:14:\"page_arguments\";N;s:17:\"delivery_callback\";N;s:10:\"tab_parent\";N;s:8:\"tab_root\";N;s:5:\"title\";N;s:14:\"title_callback\";N;s:15:\"title_arguments\";N;s:14:\"theme_callback\";N;s:15:\"theme_arguments\";N;s:4:\"type\";N;s:11:\"description\";N;s:15:\"in_active_trail\";b:0;}s:5:\"below\";a:0:{}}}s:10:\"node_links\";a:0:{}}',0,1588737632,1),('links:main-menu:tree-data:en:ec99d3452fef1ede622e66c68ba908b1dad455aa71f5e68648aeec6488b89c88','a:2:{s:4:\"tree\";a:1:{i:219;a:2:{s:4:\"link\";a:42:{s:9:\"menu_name\";s:9:\"main-menu\";s:4:\"mlid\";s:3:\"219\";s:
  387. /*!40000 ALTER TABLE `cache_menu` ENABLE KEYS */;
  388. UNLOCK TABLES;
  389. --
  390. -- Table structure for table `cache_page`
  391. --
  392. DROP TABLE IF EXISTS `cache_page`;
  393. /*!40101 SET @saved_cs_client = @@character_set_client */;
  394. /*!40101 SET character_set_client = utf8 */;
  395. CREATE TABLE `cache_page` (
  396. `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  397. `data` longblob COMMENT 'A collection of data to cache.',
  398. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  399. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  400. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  401. PRIMARY KEY (`cid`),
  402. KEY `expire` (`expire`)
  403. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Cache table used to store compressed pages for anonymous...';
  404. /*!40101 SET character_set_client = @saved_cs_client */;
  405. --
  406. -- Dumping data for table `cache_page`
  407. --
  408. LOCK TABLES `cache_page` WRITE;
  409. /*!40000 ALTER TABLE `cache_page` DISABLE KEYS */;
  410. /*!40000 ALTER TABLE `cache_page` ENABLE KEYS */;
  411. UNLOCK TABLES;
  412. --
  413. -- Table structure for table `cache_path`
  414. --
  415. DROP TABLE IF EXISTS `cache_path`;
  416. /*!40101 SET @saved_cs_client = @@character_set_client */;
  417. /*!40101 SET character_set_client = utf8 */;
  418. CREATE TABLE `cache_path` (
  419. `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',
  420. `data` longblob COMMENT 'A collection of data to cache.',
  421. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
  422. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',
  423. `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).',
  424. PRIMARY KEY (`cid`),
  425. KEY `expire` (`expire`)
  426. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Cache table for path alias lookup.';
  427. /*!40101 SET character_set_client = @saved_cs_client */;
  428. --
  429. -- Dumping data for table `cache_path`
  430. --
  431. LOCK TABLES `cache_path` WRITE;
  432. /*!40000 ALTER TABLE `cache_path` DISABLE KEYS */;
  433. /*!40000 ALTER TABLE `cache_path` ENABLE KEYS */;
  434. UNLOCK TABLES;
  435. --
  436. -- Table structure for table `comment`
  437. --
  438. DROP TABLE IF EXISTS `comment`;
  439. /*!40101 SET @saved_cs_client = @@character_set_client */;
  440. /*!40101 SET character_set_client = utf8 */;
  441. CREATE TABLE `comment` (
  442. `cid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique comment ID.',
  443. `pid` int(11) NOT NULL DEFAULT '0' COMMENT 'The comment.cid to which this comment is a reply. If set to 0, this comment is not a reply to an existing comment.',
  444. `nid` int(11) NOT NULL DEFAULT '0' COMMENT 'The node.nid to which this comment is a reply.',
  445. `uid` int(11) NOT NULL DEFAULT '0' COMMENT 'The users.uid who authored the comment. If set to 0, this comment was created by an anonymous user.',
  446. `subject` varchar(64) NOT NULL DEFAULT '' COMMENT 'The comment title.',
  447. `hostname` varchar(128) NOT NULL DEFAULT '' COMMENT 'The author’s host name.',
  448. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'The time that the comment was created, as a Unix timestamp.',
  449. `changed` int(11) NOT NULL DEFAULT '0' COMMENT 'The time that the comment was last edited, as a Unix timestamp.',
  450. `status` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT 'The published status of a comment. (0 = Not Published, 1 = Published)',
  451. `thread` varchar(255) NOT NULL COMMENT 'The vancode representation of the comment’s place in a thread.',
  452. `name` varchar(60) DEFAULT NULL COMMENT 'The comment author’s name. Uses users.name if the user is logged in, otherwise uses the value typed into the comment form.',
  453. `mail` varchar(64) DEFAULT NULL COMMENT 'The comment author’s e-mail address from the comment form, if user is anonymous, and the ’Anonymous users may/must leave their contact information’ setting is turned on.',
  454. `homepage` varchar(255) DEFAULT NULL COMMENT 'The comment author’s home page address from the comment form, if user is anonymous, and the ’Anonymous users may/must leave their contact information’ setting is turned on.',
  455. `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'The languages.language of this comment.',
  456. PRIMARY KEY (`cid`),
  457. KEY `comment_status_pid` (`pid`,`status`),
  458. KEY `comment_num_new` (`nid`,`status`,`created`,`cid`,`thread`),
  459. KEY `comment_uid` (`uid`),
  460. KEY `comment_nid_language` (`nid`,`language`),
  461. KEY `comment_created` (`created`)
  462. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores comments and associated data.';
  463. /*!40101 SET character_set_client = @saved_cs_client */;
  464. --
  465. -- Dumping data for table `comment`
  466. --
  467. LOCK TABLES `comment` WRITE;
  468. /*!40000 ALTER TABLE `comment` DISABLE KEYS */;
  469. /*!40000 ALTER TABLE `comment` ENABLE KEYS */;
  470. UNLOCK TABLES;
  471. --
  472. -- Table structure for table `date_format_locale`
  473. --
  474. DROP TABLE IF EXISTS `date_format_locale`;
  475. /*!40101 SET @saved_cs_client = @@character_set_client */;
  476. /*!40101 SET character_set_client = utf8 */;
  477. CREATE TABLE `date_format_locale` (
  478. `format` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'The date format string.',
  479. `type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.',
  480. `language` varchar(12) NOT NULL COMMENT 'A languages.language for this format to be used with.',
  481. PRIMARY KEY (`type`,`language`)
  482. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores configured date formats for each locale.';
  483. /*!40101 SET character_set_client = @saved_cs_client */;
  484. --
  485. -- Dumping data for table `date_format_locale`
  486. --
  487. LOCK TABLES `date_format_locale` WRITE;
  488. /*!40000 ALTER TABLE `date_format_locale` DISABLE KEYS */;
  489. /*!40000 ALTER TABLE `date_format_locale` ENABLE KEYS */;
  490. UNLOCK TABLES;
  491. --
  492. -- Table structure for table `date_format_type`
  493. --
  494. DROP TABLE IF EXISTS `date_format_type`;
  495. /*!40101 SET @saved_cs_client = @@character_set_client */;
  496. /*!40101 SET character_set_client = utf8 */;
  497. CREATE TABLE `date_format_type` (
  498. `type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.',
  499. `title` varchar(255) NOT NULL COMMENT 'The human readable name of the format type.',
  500. `locked` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Whether or not this is a system provided format.',
  501. PRIMARY KEY (`type`),
  502. KEY `title` (`title`)
  503. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores configured date format types.';
  504. /*!40101 SET character_set_client = @saved_cs_client */;
  505. --
  506. -- Dumping data for table `date_format_type`
  507. --
  508. LOCK TABLES `date_format_type` WRITE;
  509. /*!40000 ALTER TABLE `date_format_type` DISABLE KEYS */;
  510. INSERT INTO `date_format_type` VALUES ('long','Long',1),('medium','Medium',1),('short','Short',1);
  511. /*!40000 ALTER TABLE `date_format_type` ENABLE KEYS */;
  512. UNLOCK TABLES;
  513. --
  514. -- Table structure for table `date_formats`
  515. --
  516. DROP TABLE IF EXISTS `date_formats`;
  517. /*!40101 SET @saved_cs_client = @@character_set_client */;
  518. /*!40101 SET character_set_client = utf8 */;
  519. CREATE TABLE `date_formats` (
  520. `dfid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The date format identifier.',
  521. `format` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'The date format string.',
  522. `type` varchar(64) NOT NULL COMMENT 'The date format type, e.g. medium.',
  523. `locked` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Whether or not this format can be modified.',
  524. PRIMARY KEY (`dfid`),
  525. UNIQUE KEY `formats` (`format`,`type`)
  526. ) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores configured date formats.';
  527. /*!40101 SET character_set_client = @saved_cs_client */;
  528. --
  529. -- Dumping data for table `date_formats`
  530. --
  531. LOCK TABLES `date_formats` WRITE;
  532. /*!40000 ALTER TABLE `date_formats` DISABLE KEYS */;
  533. INSERT INTO `date_formats` VALUES (1,'m/d/Y - H:i','short',1),(2,'d/m/Y - H:i','short',1),(3,'Y/m/d - H:i','short',1),(4,'d.m.Y - H:i','short',1),(5,'Y-m-d H:i','short',1),(6,'m/d/Y - g:ia','short',1),(7,'d/m/Y - g:ia','short',1),(8,'Y/m/d - g:ia','short',1),(9,'M j Y - H:i','short',1),(10,'j M Y - H:i','short',1),(11,'Y M j - H:i','short',1),(12,'M j Y - g:ia','short',1),(13,'j M Y - g:ia','short',1),(14,'Y M j - g:ia','short',1),(15,'D, m/d/Y - H:i','medium',1),(16,'D, d/m/Y - H:i','medium',1),(17,'D, Y/m/d - H:i','medium',1),(18,'D, Y-m-d H:i','medium',1),(19,'F j, Y - H:i','medium',1),(20,'j F, Y - H:i','medium',1),(21,'Y, F j - H:i','medium',1),(22,'D, m/d/Y - g:ia','medium',1),(23,'D, d/m/Y - g:ia','medium',1),(24,'D, Y/m/d - g:ia','medium',1),(25,'F j, Y - g:ia','medium',1),(26,'j F Y - g:ia','medium',1),(27,'Y, F j - g:ia','medium',1),(28,'j. F Y - G:i','medium',1),(29,'l, F j, Y - H:i','long',1),(30,'l, j F, Y - H:i','long',1),(31,'l, Y, F j - H:i','long',1),(32,'l, F j, Y - g:ia','long',1),(33,'l, j F Y - g:ia','long',1),(34,'l, Y, F j - g:ia','long',1),(35,'l, j. F Y - G:i','long',1);
  534. /*!40000 ALTER TABLE `date_formats` ENABLE KEYS */;
  535. UNLOCK TABLES;
  536. --
  537. -- Table structure for table `field_collection_item`
  538. --
  539. DROP TABLE IF EXISTS `field_collection_item`;
  540. /*!40101 SET @saved_cs_client = @@character_set_client */;
  541. /*!40101 SET character_set_client = utf8 */;
  542. CREATE TABLE `field_collection_item` (
  543. `item_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique field collection item ID.',
  544. `revision_id` int(11) NOT NULL COMMENT 'Default revision ID.',
  545. `field_name` varchar(32) NOT NULL COMMENT 'The name of the field on the host entity embedding this entity.',
  546. `archived` int(11) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether the field collection item is archived.',
  547. PRIMARY KEY (`item_id`)
  548. ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores information about field collection items.';
  549. /*!40101 SET character_set_client = @saved_cs_client */;
  550. --
  551. -- Dumping data for table `field_collection_item`
  552. --
  553. LOCK TABLES `field_collection_item` WRITE;
  554. /*!40000 ALTER TABLE `field_collection_item` DISABLE KEYS */;
  555. INSERT INTO `field_collection_item` VALUES (1,1,'field_test_paragraphs_content',0),(2,2,'field_test_paragraphs_content',0),(3,3,'field_test_paragraphs_content',0),(4,4,'field_test_paragraphs_content',0),(5,5,'field_test_paragraphs_content',0),(6,6,'field_test_paragraphs_content',0),(7,7,'field_test_paragraphs_content',0);
  556. /*!40000 ALTER TABLE `field_collection_item` ENABLE KEYS */;
  557. UNLOCK TABLES;
  558. --
  559. -- Table structure for table `field_collection_item_revision`
  560. --
  561. DROP TABLE IF EXISTS `field_collection_item_revision`;
  562. /*!40101 SET @saved_cs_client = @@character_set_client */;
  563. /*!40101 SET character_set_client = utf8 */;
  564. CREATE TABLE `field_collection_item_revision` (
  565. `revision_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique revision ID.',
  566. `item_id` int(11) NOT NULL COMMENT 'Field collection item ID.',
  567. PRIMARY KEY (`revision_id`),
  568. KEY `item_id` (`item_id`)
  569. ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores revision information about field collection items.';
  570. /*!40101 SET character_set_client = @saved_cs_client */;
  571. --
  572. -- Dumping data for table `field_collection_item_revision`
  573. --
  574. LOCK TABLES `field_collection_item_revision` WRITE;
  575. /*!40000 ALTER TABLE `field_collection_item_revision` DISABLE KEYS */;
  576. INSERT INTO `field_collection_item_revision` VALUES (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7);
  577. /*!40000 ALTER TABLE `field_collection_item_revision` ENABLE KEYS */;
  578. UNLOCK TABLES;
  579. --
  580. -- Table structure for table `field_config`
  581. --
  582. DROP TABLE IF EXISTS `field_config`;
  583. /*!40101 SET @saved_cs_client = @@character_set_client */;
  584. /*!40101 SET character_set_client = utf8 */;
  585. CREATE TABLE `field_config` (
  586. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a field',
  587. `field_name` varchar(32) NOT NULL COMMENT 'The name of this field. Non-deleted field names are unique, but multiple deleted fields can have the same name.',
  588. `type` varchar(128) NOT NULL COMMENT 'The type of this field.',
  589. `module` varchar(128) NOT NULL DEFAULT '' COMMENT 'The module that implements the field type.',
  590. `active` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether the module that implements the field type is enabled.',
  591. `storage_type` varchar(128) NOT NULL COMMENT 'The storage backend for the field.',
  592. `storage_module` varchar(128) NOT NULL DEFAULT '' COMMENT 'The module that implements the storage backend.',
  593. `storage_active` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether the module that implements the storage backend is enabled.',
  594. `locked` tinyint(4) NOT NULL DEFAULT '0' COMMENT '@TODO',
  595. `data` longblob NOT NULL COMMENT 'Serialized data containing the field properties that do not warrant a dedicated column.',
  596. `cardinality` tinyint(4) NOT NULL DEFAULT '0',
  597. `translatable` tinyint(4) NOT NULL DEFAULT '0',
  598. `deleted` tinyint(4) NOT NULL DEFAULT '0',
  599. PRIMARY KEY (`id`),
  600. KEY `field_name` (`field_name`),
  601. KEY `active` (`active`),
  602. KEY `storage_active` (`storage_active`),
  603. KEY `deleted` (`deleted`),
  604. KEY `module` (`module`),
  605. KEY `storage_module` (`storage_module`),
  606. KEY `type` (`type`),
  607. KEY `storage_type` (`storage_type`)
  608. ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  609. /*!40101 SET character_set_client = @saved_cs_client */;
  610. --
  611. -- Dumping data for table `field_config`
  612. --
  613. LOCK TABLES `field_config` WRITE;
  614. /*!40000 ALTER TABLE `field_config` DISABLE KEYS */;
  615. INSERT INTO `field_config` VALUES (1,'comment_body','text_long','text',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{s:12:\"entity_types\";a:1:{i:0;s:7:\"comment\";}s:12:\"translatable\";b:0;s:8:\"settings\";a:0:{}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,0,0),(2,'body','text_with_summary','text',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{s:12:\"entity_types\";a:1:{i:0;s:4:\"node\";}s:12:\"translatable\";b:0;s:8:\"settings\";a:0:{}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:12:\"foreign keys\";a:1:{s:6:\"format\";a:2:{s:5:\"table\";s:13:\"filter_format\";s:7:\"columns\";a:1:{s:6:\"format\";s:6:\"format\";}}}s:7:\"indexes\";a:1:{s:6:\"format\";a:1:{i:0;s:6:\"format\";}}}',1,0,0),(3,'field_tags','taxonomy_term_reference','taxonomy',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{s:8:\"settings\";a:1:{s:14:\"allowed_values\";a:1:{i:0;a:2:{s:10:\"vocabulary\";s:4:\"tags\";s:6:\"parent\";i:0;}}}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:12:\"foreign keys\";a:1:{s:3:\"tid\";a:2:{s:5:\"table\";s:18:\"taxonomy_term_data\";s:7:\"columns\";a:1:{s:3:\"tid\";s:3:\"tid\";}}}s:7:\"indexes\";a:1:{s:3:\"tid\";a:1:{i:0;s:3:\"tid\";}}}',-1,0,0),(4,'field_image','image','image',1,'field_sql_storage','field_sql_storage',1,0,'a:6:{s:7:\"indexes\";a:1:{s:3:\"fid\";a:1:{i:0;s:3:\"fid\";}}s:8:\"settings\";a:2:{s:10:\"uri_scheme\";s:6:\"public\";s:13:\"default_image\";b:0;}s:7:\"storage\";a:4:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";i:1;}s:12:\"entity_types\";a:0:{}s:12:\"translatable\";b:0;s:12:\"foreign keys\";a:1:{s:3:\"fid\";a:2:{s:5:\"table\";s:12:\"file_managed\";s:7:\"columns\";a:1:{s:3:\"fid\";s:3:\"fid\";}}}}',1,0,0),(5,'field_test_paragraphs_content','field_collection','field_collection',1,'field_sql_storage','field_sql_storage',1,0,'a:7:{s:12:\"translatable\";s:1:\"0\";s:12:\"entity_types\";a:0:{}s:8:\"settings\";a:3:{s:16:\"hide_blank_items\";i:0;s:17:\"hide_initial_item\";i:0;s:4:\"path\";s:0:\"\";}s:7:\"storage\";a:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:40:\"field_data_field_test_paragraphs_content\";a:2:{s:5:\"value\";s:35:\"field_test_paragraphs_content_value\";s:11:\"revision_id\";s:41:\"field_test_paragraphs_content_revision_id\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:44:\"field_revision_field_test_paragraphs_content\";a:2:{s:5:\"value\";s:35:\"field_test_paragraphs_content_value\";s:11:\"revision_id\";s:41:\"field_test_paragraphs_content_revision_id\";}}}}}s:12:\"foreign keys\";a:0:{}s:7:\"indexes\";a:2:{s:5:\"value\";a:1:{i:0;s:5:\"value\";}s:11:\"revision_id\";a:1:{i:0;s:11:\"revision_id\";}}s:2:\"id\";s:1:\"5\";}',-1,0,0),(6,'field_fc_title','text','text',1,'field_sql_storage','field_sql_storage',1,0,'a:7:{s:12:\"translatable\";s:1:\"0\";s:12:\"entity_types\";a:0:{}s:8:\"settings\";a:1:{s:10:\"max_length\";s:3:\"255\";}s:7:\"storage\";a:5:{s:4:\"type\";s:17:\"field_sql_storage\";s:8:\"settings\";a:0:{}s:6:\"module\";s:17:\"field_sql_storage\";s:6:\"active\";s:1:\"1\";s:7:\"details\";a:1:{s:3:\"sql\";a:2:{s:18:\"FIELD_LOAD_CURRENT\";a:1:{s:25:\"field_data_field_fc_title\";a:2:{s:5:\"value\";s:20:\"field_fc_title_value\";s:6:\"format\";s:21:\"field_fc_title_format\";}}s:19:\"FIELD_LOAD_REVISION\";a:1:{s:29:\"field_revision_field_fc_title\";a:2:{s:5:\"value\";s:20:\"field_fc_title_value\";s:6:\"format\";s
  616. /*!40000 ALTER TABLE `field_config` ENABLE KEYS */;
  617. UNLOCK TABLES;
  618. --
  619. -- Table structure for table `field_config_instance`
  620. --
  621. DROP TABLE IF EXISTS `field_config_instance`;
  622. /*!40101 SET @saved_cs_client = @@character_set_client */;
  623. /*!40101 SET character_set_client = utf8 */;
  624. CREATE TABLE `field_config_instance` (
  625. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a field instance',
  626. `field_id` int(11) NOT NULL COMMENT 'The identifier of the field attached by this instance',
  627. `field_name` varchar(32) NOT NULL DEFAULT '',
  628. `entity_type` varchar(32) NOT NULL DEFAULT '',
  629. `bundle` varchar(128) NOT NULL DEFAULT '',
  630. `data` longblob NOT NULL,
  631. `deleted` tinyint(4) NOT NULL DEFAULT '0',
  632. PRIMARY KEY (`id`),
  633. KEY `field_name_bundle` (`field_name`,`entity_type`,`bundle`),
  634. KEY `deleted` (`deleted`)
  635. ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
  636. /*!40101 SET character_set_client = @saved_cs_client */;
  637. --
  638. -- Dumping data for table `field_config_instance`
  639. --
  640. LOCK TABLES `field_config_instance` WRITE;
  641. /*!40000 ALTER TABLE `field_config_instance` DISABLE KEYS */;
  642. INSERT INTO `field_config_instance` VALUES (1,1,'comment_body','comment','comment_node_page','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0),(2,2,'body','node','page','a:6:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:4:{s:4:\"type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"weight\";i:-4;s:6:\"module\";s:4:\"text\";}s:8:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0),(3,1,'comment_body','comment','comment_node_article','a:6:{s:5:\"label\";s:7:\"Comment\";s:8:\"settings\";a:2:{s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}s:8:\"required\";b:1;s:7:\"display\";a:1:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:6:\"weight\";i:0;s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";}}s:6:\"widget\";a:4:{s:4:\"type\";s:13:\"text_textarea\";s:8:\"settings\";a:1:{s:4:\"rows\";i:5;}s:6:\"weight\";i:0;s:6:\"module\";s:4:\"text\";}s:11:\"description\";s:0:\"\";}',0),(4,2,'body','node','article','a:6:{s:5:\"label\";s:4:\"Body\";s:6:\"widget\";a:4:{s:4:\"type\";s:26:\"text_textarea_with_summary\";s:8:\"settings\";a:2:{s:4:\"rows\";i:20;s:12:\"summary_rows\";i:5;}s:6:\"weight\";i:-4;s:6:\"module\";s:4:\"text\";}s:8:\"settings\";a:3:{s:15:\"display_summary\";b:1;s:15:\"text_processing\";i:1;s:18:\"user_register_form\";b:0;}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:12:\"text_default\";s:8:\"settings\";a:0:{}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}s:6:\"teaser\";a:5:{s:5:\"label\";s:6:\"hidden\";s:4:\"type\";s:23:\"text_summary_or_trimmed\";s:8:\"settings\";a:1:{s:11:\"trim_length\";i:600;}s:6:\"module\";s:4:\"text\";s:6:\"weight\";i:0;}}s:8:\"required\";b:0;s:11:\"description\";s:0:\"\";}',0),(5,3,'field_tags','node','article','a:6:{s:5:\"label\";s:4:\"Tags\";s:11:\"description\";s:63:\"Enter a comma-separated list of words to describe your content.\";s:6:\"widget\";a:4:{s:4:\"type\";s:21:\"taxonomy_autocomplete\";s:6:\"weight\";i:-4;s:8:\"settings\";a:2:{s:4:\"size\";i:60;s:17:\"autocomplete_path\";s:21:\"taxonomy/autocomplete\";}s:6:\"module\";s:8:\"taxonomy\";}s:7:\"display\";a:2:{s:7:\"default\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}s:6:\"teaser\";a:5:{s:4:\"type\";s:28:\"taxonomy_term_reference_link\";s:6:\"weight\";i:10;s:5:\"label\";s:5:\"above\";s:8:\"settings\";a:0:{}s:6:\"module\";s:8:\"taxonomy\";}}s:8:\"settings\";a:1:{s:18:\"user_register_form\";b:0;}s:8:\"required\";b:0;}',0),(6,4,'field_image','node','article','a:6:{s:5:\"label\";s:5:\"Image\";s:11:\"description\";s:40:\"Upload an image to go with this article.\";s:8:\"required\";b:0;s:8:\"settings\";a:9:{s:14:\"file_directory\";s:11:\"field/image\";s:15:\"file_extensions\";s:16:\"png gif jpg jpeg\";s:12:\"max_filesize\";s:0:\"\";s:14:\"max_resolution\";s:0:\"\";s:14:\"min_resolution\";s:0:\"\";s:9:\"alt_field\";b:1;s:11:\"title_field\";s:0:\"\";s:13:\"default_image\";i:0;s:18:\"user_register_form\";b:0;}s:6:\"widget\";a:4:{s:4:\"type\";s:11:\"image_image\";s:
  643. /*!40000 ALTER TABLE `field_config_instance` ENABLE KEYS */;
  644. UNLOCK TABLES;
  645. --
  646. -- Table structure for table `field_data_body`
  647. --
  648. DROP TABLE IF EXISTS `field_data_body`;
  649. /*!40101 SET @saved_cs_client = @@character_set_client */;
  650. /*!40101 SET character_set_client = utf8 */;
  651. CREATE TABLE `field_data_body` (
  652. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  653. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  654. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  655. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  656. `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  657. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  658. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  659. `body_value` longtext,
  660. `body_summary` longtext,
  661. `body_format` varchar(255) DEFAULT NULL,
  662. PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  663. KEY `entity_type` (`entity_type`),
  664. KEY `bundle` (`bundle`),
  665. KEY `deleted` (`deleted`),
  666. KEY `entity_id` (`entity_id`),
  667. KEY `revision_id` (`revision_id`),
  668. KEY `language` (`language`),
  669. KEY `body_format` (`body_format`)
  670. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Data storage for field 2 (body)';
  671. /*!40101 SET character_set_client = @saved_cs_client */;
  672. --
  673. -- Dumping data for table `field_data_body`
  674. --
  675. LOCK TABLES `field_data_body` WRITE;
  676. /*!40000 ALTER TABLE `field_data_body` DISABLE KEYS */;
  677. INSERT INTO `field_data_body` VALUES ('node','page',0,4,4,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. In hac habitasse platea dictumst. Etiam dignissim diam quis enim lobortis scelerisque fermentum. Orci ac auctor augue mauris. Magna fringilla urna porttitor rhoncus dolor. Auctor neque vitae tempus quam. Bibendum arcu vitae elementum curabitur vitae nunc sed velit dignissim. Enim diam vulputate ut pharetra sit amet aliquam. Nisi vitae suscipit tellus mauris a diam maecenas sed enim. Commodo nulla facilisi nullam vehicula ipsum a. Lobortis feugiat vivamus at augue eget arcu. Tincidunt ornare massa eget egestas purus viverra accumsan. Enim eu turpis egestas pretium aenean. Vestibulum morbi blandit cursus risus at ultrices mi tempus imperdiet. Morbi quis commodo odio aenean sed adipiscing diam. Convallis convallis tellus id interdum velit. Risus in hendrerit gravida rutrum quisque non tellus orci. Felis eget velit aliquet sagittis id consectetur purus.\r\n\r\nEst ante in nibh mauris cursus mattis molestie. Eros in cursus turpis massa. Sed vulputate odio ut enim. Lectus urna duis convallis convallis tellus id. Risus nullam eget felis eget. Ac orci phasellus egestas tellus rutrum tellus pellentesque. Diam volutpat commodo sed egestas egestas fringilla phasellus faucibus. Mauris augue neque gravida in fermentum et sollicitudin ac orci. Nulla pharetra diam sit amet nisl suscipit adipiscing bibendum est. Sed adipiscing diam donec adipiscing tristique risus nec feugiat in. Mattis molestie a iaculis at erat pellentesque adipiscing.','','filtered_html'),('node','page',0,5,5,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Mauris nunc congue nisi vitae suscipit. Nulla pharetra diam sit amet nisl suscipit adipiscing bibendum est. Molestie ac feugiat sed lectus vestibulum mattis ullamcorper velit. Nunc sed velit dignissim sodales ut eu sem integer vitae. Tellus orci ac auctor augue mauris augue neque gravida in. Integer vitae justo eget magna fermentum iaculis eu. Cursus eget nunc scelerisque viverra. Nulla pellentesque dignissim enim sit amet venenatis. Magna sit amet purus gravida quis blandit turpis cursus in. Fames ac turpis egestas integer eget aliquet nibh praesent. Sit amet porttitor eget dolor morbi non arcu. At volutpat diam ut venenatis tellus in metus vulputate. Suspendisse in est ante in nibh mauris.\r\n\r\nJusto nec ultrices dui sapien. Sed cras ornare arcu dui vivamus arcu felis bibendum ut. Egestas egestas fringilla phasellus faucibus scelerisque eleifend donec. Vitae tempus quam pellentesque nec nam aliquam. Sed vulputate mi sit amet. Ultrices neque ornare aenean euismod elementum nisi quis eleifend quam. Volutpat ac tincidunt vitae semper quis lectus. A pellentesque sit amet porttitor eget dolor. Tortor at risus viverra adipiscing. Metus aliquam eleifend mi in. Eu nisl nunc mi ipsum faucibus vitae. Mollis aliquam ut porttitor leo a. Eu augue ut lectus arcu bibendum at varius vel pharetra. Eu sem integer vitae justo eget magna. Dictum non consectetur a erat nam at lectus urna duis.','','filtered_html'),('node','page',0,6,6,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum at varius vel pharetra vel. Euismod nisi porta lorem mollis aliquam ut porttitor leo. Enim nec dui nunc mattis enim ut tellus elementum sagittis.','','filtered_html');
  678. /*!40000 ALTER TABLE `field_data_body` ENABLE KEYS */;
  679. UNLOCK TABLES;
  680. --
  681. -- Table structure for table `field_data_comment_body`
  682. --
  683. DROP TABLE IF EXISTS `field_data_comment_body`;
  684. /*!40101 SET @saved_cs_client = @@character_set_client */;
  685. /*!40101 SET character_set_client = utf8 */;
  686. CREATE TABLE `field_data_comment_body` (
  687. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  688. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  689. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  690. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  691. `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  692. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  693. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  694. `comment_body_value` longtext,
  695. `comment_body_format` varchar(255) DEFAULT NULL,
  696. PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  697. KEY `entity_type` (`entity_type`),
  698. KEY `bundle` (`bundle`),
  699. KEY `deleted` (`deleted`),
  700. KEY `entity_id` (`entity_id`),
  701. KEY `revision_id` (`revision_id`),
  702. KEY `language` (`language`),
  703. KEY `comment_body_format` (`comment_body_format`)
  704. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Data storage for field 1 (comment_body)';
  705. /*!40101 SET character_set_client = @saved_cs_client */;
  706. --
  707. -- Dumping data for table `field_data_comment_body`
  708. --
  709. LOCK TABLES `field_data_comment_body` WRITE;
  710. /*!40000 ALTER TABLE `field_data_comment_body` DISABLE KEYS */;
  711. /*!40000 ALTER TABLE `field_data_comment_body` ENABLE KEYS */;
  712. UNLOCK TABLES;
  713. --
  714. -- Table structure for table `field_data_field_fc_body`
  715. --
  716. DROP TABLE IF EXISTS `field_data_field_fc_body`;
  717. /*!40101 SET @saved_cs_client = @@character_set_client */;
  718. /*!40101 SET character_set_client = utf8 */;
  719. CREATE TABLE `field_data_field_fc_body` (
  720. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  721. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  722. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  723. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  724. `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  725. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  726. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  727. `field_fc_body_value` longtext,
  728. `field_fc_body_format` varchar(255) DEFAULT NULL,
  729. PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  730. KEY `entity_type` (`entity_type`),
  731. KEY `bundle` (`bundle`),
  732. KEY `deleted` (`deleted`),
  733. KEY `entity_id` (`entity_id`),
  734. KEY `revision_id` (`revision_id`),
  735. KEY `language` (`language`),
  736. KEY `field_fc_body_format` (`field_fc_body_format`)
  737. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Data storage for field 7 (field_fc_body)';
  738. /*!40101 SET character_set_client = @saved_cs_client */;
  739. --
  740. -- Dumping data for table `field_data_field_fc_body`
  741. --
  742. LOCK TABLES `field_data_field_fc_body` WRITE;
  743. /*!40000 ALTER TABLE `field_data_field_fc_body` DISABLE KEYS */;
  744. INSERT INTO `field_data_field_fc_body` VALUES ('field_collection_item','field_test_paragraphs_content',0,1,1,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sem et tortor consequat id. At tellus at urna condimentum mattis. Sed viverra ipsum nunc aliquet bibendum. Aliquam malesuada bibendum arcu vitae elementum curabitur vitae. Sollicitudin ac orci phasellus egestas tellus rutrum tellus pellentesque. Dis parturient montes nascetur ridiculus mus mauris vitae ultricies. Orci dapibus ultrices in iaculis. Blandit turpis cursus in hac habitasse platea dictumst quisque sagittis. Sapien faucibus et molestie ac feugiat. Arcu non sodales neque sodales ut etiam sit amet. Mauris pharetra et ultrices neque ornare.\r\n\r\nElementum eu facilisis sed odio morbi quis commodo odio aenean. Cursus turpis massa tincidunt dui ut ornare lectus sit. Facilisi nullam vehicula ipsum a arcu cursus. Luctus venenatis lectus magna fringilla urna porttitor rhoncus dolor. Tortor at auctor urna nunc id cursus metus. Vulputate eu scelerisque felis imperdiet proin fermentum leo. Posuere urna nec tincidunt praesent semper feugiat nibh sed pulvinar. Aliquet risus feugiat in ante metus dictum at tempor. Purus viverra accumsan in nisl nisi. Cursus metus aliquam eleifend mi in nulla posuere. Eu feugiat pretium nibh ipsum consequat. Est lorem ipsum dolor sit amet. Pharetra vel turpis nunc eget lorem.',NULL),('field_collection_item','field_test_paragraphs_content',0,2,2,'und',0,'Est sit amet facilisis magna etiam tempor orci. Vivamus at augue eget arcu dictum varius duis at consectetur. Ipsum a arcu cursus vitae congue mauris rhoncus. In est ante in nibh mauris cursus mattis molestie a. Risus commodo viverra maecenas accumsan lacus vel facilisis. Montes nascetur ridiculus mus mauris vitae ultricies. Tempus iaculis urna id volutpat lacus laoreet non curabitur gravida. Morbi tincidunt augue interdum velit euismod in pellentesque massa placerat. Eu non diam phasellus vestibulum lorem sed. Varius quam quisque id diam vel quam elementum pulvinar. Id nibh tortor id aliquet lectus proin nibh nisl. Massa tincidunt nunc pulvinar sapien et ligula. Sed tempus urna et pharetra pharetra massa massa ultricies mi.',NULL),('field_collection_item','field_test_paragraphs_content',0,3,3,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Convallis posuere morbi leo urna molestie at elementum. Elementum eu facilisis sed odio morbi quis. Eget dolor morbi non arcu risus quis varius quam quisque. Vel pretium lectus quam id leo.',NULL),('field_collection_item','field_test_paragraphs_content',0,4,4,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ullamcorper velit sed ullamcorper morbi tincidunt ornare. Volutpat diam ut venenatis tellus. Egestas integer eget aliquet nibh praesent tristique magna. Tortor at risus viverra adipiscing at in tellus integer feugiat. At in tellus integer feugiat scelerisque varius morbi enim nunc. Vel fringilla est ullamcorper eget nulla. Mauris cursus mattis molestie a iaculis at. Amet nulla facilisi morbi tempus iaculis urna id volutpat lacus. Nisl suscipit adipiscing bibendum est ultricies integer. Id leo in vitae turpis. Ac tincidunt vitae semper quis lectus nulla at volutpat. Mi in nulla posuere sollicitudin aliquam ultrices. A condimentum vitae sapien pellentesque habitant morbi. Tristique nulla aliquet enim tortor. Pulvinar etiam non quam lacus suspendisse faucibus interdum posuere. Ipsum dolor sit amet consectetur adipiscing elit ut aliquam. Velit aliquet sagittis id consectetur purus ut faucibus pulvinar elementum. Velit sed ullamcorper morbi tincidunt ornare massa eget egestas.\r\n\r\nConsectetur adipiscing elit duis tristique sollicitudin nibh sit amet. Viverra mauris in aliquam sem. Diam vel quam elementum pulvinar etiam non quam lacus. Leo integer malesuada nunc vel risus. Eros donec ac odio tempor orc
  745. /*!40000 ALTER TABLE `field_data_field_fc_body` ENABLE KEYS */;
  746. UNLOCK TABLES;
  747. --
  748. -- Table structure for table `field_data_field_fc_title`
  749. --
  750. DROP TABLE IF EXISTS `field_data_field_fc_title`;
  751. /*!40101 SET @saved_cs_client = @@character_set_client */;
  752. /*!40101 SET character_set_client = utf8 */;
  753. CREATE TABLE `field_data_field_fc_title` (
  754. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  755. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  756. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  757. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  758. `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  759. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  760. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  761. `field_fc_title_value` varchar(255) DEFAULT NULL,
  762. `field_fc_title_format` varchar(255) DEFAULT NULL,
  763. PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  764. KEY `entity_type` (`entity_type`),
  765. KEY `bundle` (`bundle`),
  766. KEY `deleted` (`deleted`),
  767. KEY `entity_id` (`entity_id`),
  768. KEY `revision_id` (`revision_id`),
  769. KEY `language` (`language`),
  770. KEY `field_fc_title_format` (`field_fc_title_format`)
  771. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Data storage for field 6 (field_fc_title)';
  772. /*!40101 SET character_set_client = @saved_cs_client */;
  773. --
  774. -- Dumping data for table `field_data_field_fc_title`
  775. --
  776. LOCK TABLES `field_data_field_fc_title` WRITE;
  777. /*!40000 ALTER TABLE `field_data_field_fc_title` DISABLE KEYS */;
  778. INSERT INTO `field_data_field_fc_title` VALUES ('field_collection_item','field_test_paragraphs_content',0,1,1,'und',0,'dis parturient montes nascetur ridiculus',NULL),('field_collection_item','field_test_paragraphs_content',0,2,2,'und',0,'lorem ipsum dolor sit amet',NULL),('field_collection_item','field_test_paragraphs_content',0,3,3,'und',0,'massa tincidunt dui ut ornare',NULL),('field_collection_item','field_test_paragraphs_content',0,4,4,'und',0,'in hendrerit gravida rutrum quisque non',NULL),('field_collection_item','field_test_paragraphs_content',0,5,5,'und',0,'sed do eiusmod',NULL),('field_collection_item','field_test_paragraphs_content',0,6,6,'und',0,'Justo nec ultrices dui',NULL),('field_collection_item','field_test_paragraphs_content',0,7,7,'und',0,'Orci dapibus ultrices in iaculis',NULL);
  779. /*!40000 ALTER TABLE `field_data_field_fc_title` ENABLE KEYS */;
  780. UNLOCK TABLES;
  781. --
  782. -- Table structure for table `field_data_field_image`
  783. --
  784. DROP TABLE IF EXISTS `field_data_field_image`;
  785. /*!40101 SET @saved_cs_client = @@character_set_client */;
  786. /*!40101 SET character_set_client = utf8 */;
  787. CREATE TABLE `field_data_field_image` (
  788. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  789. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  790. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  791. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  792. `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  793. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  794. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  795. `field_image_fid` int(10) unsigned DEFAULT NULL COMMENT 'The file_managed.fid being referenced in this field.',
  796. `field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
  797. `field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
  798. `field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
  799. `field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
  800. PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  801. KEY `entity_type` (`entity_type`),
  802. KEY `bundle` (`bundle`),
  803. KEY `deleted` (`deleted`),
  804. KEY `entity_id` (`entity_id`),
  805. KEY `revision_id` (`revision_id`),
  806. KEY `language` (`language`),
  807. KEY `field_image_fid` (`field_image_fid`)
  808. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Data storage for field 4 (field_image)';
  809. /*!40101 SET character_set_client = @saved_cs_client */;
  810. --
  811. -- Dumping data for table `field_data_field_image`
  812. --
  813. LOCK TABLES `field_data_field_image` WRITE;
  814. /*!40000 ALTER TABLE `field_data_field_image` DISABLE KEYS */;
  815. /*!40000 ALTER TABLE `field_data_field_image` ENABLE KEYS */;
  816. UNLOCK TABLES;
  817. --
  818. -- Table structure for table `field_data_field_should_be_page_body`
  819. --
  820. DROP TABLE IF EXISTS `field_data_field_should_be_page_body`;
  821. /*!40101 SET @saved_cs_client = @@character_set_client */;
  822. /*!40101 SET character_set_client = utf8 */;
  823. CREATE TABLE `field_data_field_should_be_page_body` (
  824. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  825. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  826. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  827. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  828. `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  829. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  830. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  831. `field_should_be_page_body_value` longtext,
  832. `field_should_be_page_body_summary` longtext,
  833. `field_should_be_page_body_format` varchar(255) DEFAULT NULL,
  834. PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  835. KEY `entity_type` (`entity_type`),
  836. KEY `bundle` (`bundle`),
  837. KEY `deleted` (`deleted`),
  838. KEY `entity_id` (`entity_id`),
  839. KEY `revision_id` (`revision_id`),
  840. KEY `language` (`language`),
  841. KEY `field_should_be_page_body_format` (`field_should_be_page_body_format`)
  842. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Data storage for field 8 (field_should_be_page_body)';
  843. /*!40101 SET character_set_client = @saved_cs_client */;
  844. --
  845. -- Dumping data for table `field_data_field_should_be_page_body`
  846. --
  847. LOCK TABLES `field_data_field_should_be_page_body` WRITE;
  848. /*!40000 ALTER TABLE `field_data_field_should_be_page_body` DISABLE KEYS */;
  849. INSERT INTO `field_data_field_should_be_page_body` VALUES ('node','should_have_been_page',0,7,7,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Molestie a iaculis at erat. Erat velit scelerisque in dictum non consectetur a erat. Nisl pretium fusce id velit ut tortor pretium.','','filtered_html');
  850. /*!40000 ALTER TABLE `field_data_field_should_be_page_body` ENABLE KEYS */;
  851. UNLOCK TABLES;
  852. --
  853. -- Table structure for table `field_data_field_tags`
  854. --
  855. DROP TABLE IF EXISTS `field_data_field_tags`;
  856. /*!40101 SET @saved_cs_client = @@character_set_client */;
  857. /*!40101 SET character_set_client = utf8 */;
  858. CREATE TABLE `field_data_field_tags` (
  859. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  860. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  861. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  862. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  863. `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  864. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  865. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  866. `field_tags_tid` int(10) unsigned DEFAULT NULL,
  867. PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  868. KEY `entity_type` (`entity_type`),
  869. KEY `bundle` (`bundle`),
  870. KEY `deleted` (`deleted`),
  871. KEY `entity_id` (`entity_id`),
  872. KEY `revision_id` (`revision_id`),
  873. KEY `language` (`language`),
  874. KEY `field_tags_tid` (`field_tags_tid`)
  875. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Data storage for field 3 (field_tags)';
  876. /*!40101 SET character_set_client = @saved_cs_client */;
  877. --
  878. -- Dumping data for table `field_data_field_tags`
  879. --
  880. LOCK TABLES `field_data_field_tags` WRITE;
  881. /*!40000 ALTER TABLE `field_data_field_tags` DISABLE KEYS */;
  882. /*!40000 ALTER TABLE `field_data_field_tags` ENABLE KEYS */;
  883. UNLOCK TABLES;
  884. --
  885. -- Table structure for table `field_data_field_test_paragraphs_content`
  886. --
  887. DROP TABLE IF EXISTS `field_data_field_test_paragraphs_content`;
  888. /*!40101 SET @saved_cs_client = @@character_set_client */;
  889. /*!40101 SET character_set_client = utf8 */;
  890. CREATE TABLE `field_data_field_test_paragraphs_content` (
  891. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  892. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  893. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  894. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  895. `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The entity revision id this data is attached to, or NULL if the entity type is not versioned',
  896. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  897. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  898. `field_test_paragraphs_content_value` int(11) DEFAULT NULL COMMENT 'The field collection item id.',
  899. `field_test_paragraphs_content_revision_id` int(11) DEFAULT NULL COMMENT 'The field collection item revision id.',
  900. PRIMARY KEY (`entity_type`,`entity_id`,`deleted`,`delta`,`language`),
  901. KEY `entity_type` (`entity_type`),
  902. KEY `bundle` (`bundle`),
  903. KEY `deleted` (`deleted`),
  904. KEY `entity_id` (`entity_id`),
  905. KEY `revision_id` (`revision_id`),
  906. KEY `language` (`language`),
  907. KEY `field_test_paragraphs_content_value` (`field_test_paragraphs_content_value`),
  908. KEY `field_test_paragraphs_content_revision_id` (`field_test_paragraphs_content_revision_id`)
  909. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Data storage for field 5 (field_test_paragraphs_content)';
  910. /*!40101 SET character_set_client = @saved_cs_client */;
  911. --
  912. -- Dumping data for table `field_data_field_test_paragraphs_content`
  913. --
  914. LOCK TABLES `field_data_field_test_paragraphs_content` WRITE;
  915. /*!40000 ALTER TABLE `field_data_field_test_paragraphs_content` DISABLE KEYS */;
  916. INSERT INTO `field_data_field_test_paragraphs_content` VALUES ('node','test_paragraphs',0,1,1,'und',0,1,1),('node','test_paragraphs',0,1,1,'und',1,2,2),('node','test_paragraphs',0,1,1,'und',2,3,3),('node','test_paragraphs',0,2,2,'und',0,4,4),('node','test_paragraphs',0,2,2,'und',1,5,5),('node','test_paragraphs',0,3,3,'und',0,6,6),('node','test_paragraphs',0,3,3,'und',1,7,7);
  917. /*!40000 ALTER TABLE `field_data_field_test_paragraphs_content` ENABLE KEYS */;
  918. UNLOCK TABLES;
  919. --
  920. -- Table structure for table `field_revision_body`
  921. --
  922. DROP TABLE IF EXISTS `field_revision_body`;
  923. /*!40101 SET @saved_cs_client = @@character_set_client */;
  924. /*!40101 SET character_set_client = utf8 */;
  925. CREATE TABLE `field_revision_body` (
  926. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  927. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  928. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  929. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  930. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  931. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  932. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  933. `body_value` longtext,
  934. `body_summary` longtext,
  935. `body_format` varchar(255) DEFAULT NULL,
  936. PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  937. KEY `entity_type` (`entity_type`),
  938. KEY `bundle` (`bundle`),
  939. KEY `deleted` (`deleted`),
  940. KEY `entity_id` (`entity_id`),
  941. KEY `revision_id` (`revision_id`),
  942. KEY `language` (`language`),
  943. KEY `body_format` (`body_format`)
  944. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Revision archive storage for field 2 (body)';
  945. /*!40101 SET character_set_client = @saved_cs_client */;
  946. --
  947. -- Dumping data for table `field_revision_body`
  948. --
  949. LOCK TABLES `field_revision_body` WRITE;
  950. /*!40000 ALTER TABLE `field_revision_body` DISABLE KEYS */;
  951. INSERT INTO `field_revision_body` VALUES ('node','page',0,4,4,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. In hac habitasse platea dictumst. Etiam dignissim diam quis enim lobortis scelerisque fermentum. Orci ac auctor augue mauris. Magna fringilla urna porttitor rhoncus dolor. Auctor neque vitae tempus quam. Bibendum arcu vitae elementum curabitur vitae nunc sed velit dignissim. Enim diam vulputate ut pharetra sit amet aliquam. Nisi vitae suscipit tellus mauris a diam maecenas sed enim. Commodo nulla facilisi nullam vehicula ipsum a. Lobortis feugiat vivamus at augue eget arcu. Tincidunt ornare massa eget egestas purus viverra accumsan. Enim eu turpis egestas pretium aenean. Vestibulum morbi blandit cursus risus at ultrices mi tempus imperdiet. Morbi quis commodo odio aenean sed adipiscing diam. Convallis convallis tellus id interdum velit. Risus in hendrerit gravida rutrum quisque non tellus orci. Felis eget velit aliquet sagittis id consectetur purus.\r\n\r\nEst ante in nibh mauris cursus mattis molestie. Eros in cursus turpis massa. Sed vulputate odio ut enim. Lectus urna duis convallis convallis tellus id. Risus nullam eget felis eget. Ac orci phasellus egestas tellus rutrum tellus pellentesque. Diam volutpat commodo sed egestas egestas fringilla phasellus faucibus. Mauris augue neque gravida in fermentum et sollicitudin ac orci. Nulla pharetra diam sit amet nisl suscipit adipiscing bibendum est. Sed adipiscing diam donec adipiscing tristique risus nec feugiat in. Mattis molestie a iaculis at erat pellentesque adipiscing.','','filtered_html'),('node','page',0,5,5,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Mauris nunc congue nisi vitae suscipit. Nulla pharetra diam sit amet nisl suscipit adipiscing bibendum est. Molestie ac feugiat sed lectus vestibulum mattis ullamcorper velit. Nunc sed velit dignissim sodales ut eu sem integer vitae. Tellus orci ac auctor augue mauris augue neque gravida in. Integer vitae justo eget magna fermentum iaculis eu. Cursus eget nunc scelerisque viverra. Nulla pellentesque dignissim enim sit amet venenatis. Magna sit amet purus gravida quis blandit turpis cursus in. Fames ac turpis egestas integer eget aliquet nibh praesent. Sit amet porttitor eget dolor morbi non arcu. At volutpat diam ut venenatis tellus in metus vulputate. Suspendisse in est ante in nibh mauris.\r\n\r\nJusto nec ultrices dui sapien. Sed cras ornare arcu dui vivamus arcu felis bibendum ut. Egestas egestas fringilla phasellus faucibus scelerisque eleifend donec. Vitae tempus quam pellentesque nec nam aliquam. Sed vulputate mi sit amet. Ultrices neque ornare aenean euismod elementum nisi quis eleifend quam. Volutpat ac tincidunt vitae semper quis lectus. A pellentesque sit amet porttitor eget dolor. Tortor at risus viverra adipiscing. Metus aliquam eleifend mi in. Eu nisl nunc mi ipsum faucibus vitae. Mollis aliquam ut porttitor leo a. Eu augue ut lectus arcu bibendum at varius vel pharetra. Eu sem integer vitae justo eget magna. Dictum non consectetur a erat nam at lectus urna duis.','','filtered_html'),('node','page',0,6,6,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum at varius vel pharetra vel. Euismod nisi porta lorem mollis aliquam ut porttitor leo. Enim nec dui nunc mattis enim ut tellus elementum sagittis.','','filtered_html');
  952. /*!40000 ALTER TABLE `field_revision_body` ENABLE KEYS */;
  953. UNLOCK TABLES;
  954. --
  955. -- Table structure for table `field_revision_comment_body`
  956. --
  957. DROP TABLE IF EXISTS `field_revision_comment_body`;
  958. /*!40101 SET @saved_cs_client = @@character_set_client */;
  959. /*!40101 SET character_set_client = utf8 */;
  960. CREATE TABLE `field_revision_comment_body` (
  961. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  962. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  963. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  964. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  965. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  966. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  967. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  968. `comment_body_value` longtext,
  969. `comment_body_format` varchar(255) DEFAULT NULL,
  970. PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  971. KEY `entity_type` (`entity_type`),
  972. KEY `bundle` (`bundle`),
  973. KEY `deleted` (`deleted`),
  974. KEY `entity_id` (`entity_id`),
  975. KEY `revision_id` (`revision_id`),
  976. KEY `language` (`language`),
  977. KEY `comment_body_format` (`comment_body_format`)
  978. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Revision archive storage for field 1 (comment_body)';
  979. /*!40101 SET character_set_client = @saved_cs_client */;
  980. --
  981. -- Dumping data for table `field_revision_comment_body`
  982. --
  983. LOCK TABLES `field_revision_comment_body` WRITE;
  984. /*!40000 ALTER TABLE `field_revision_comment_body` DISABLE KEYS */;
  985. /*!40000 ALTER TABLE `field_revision_comment_body` ENABLE KEYS */;
  986. UNLOCK TABLES;
  987. --
  988. -- Table structure for table `field_revision_field_fc_body`
  989. --
  990. DROP TABLE IF EXISTS `field_revision_field_fc_body`;
  991. /*!40101 SET @saved_cs_client = @@character_set_client */;
  992. /*!40101 SET character_set_client = utf8 */;
  993. CREATE TABLE `field_revision_field_fc_body` (
  994. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  995. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  996. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  997. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  998. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  999. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  1000. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1001. `field_fc_body_value` longtext,
  1002. `field_fc_body_format` varchar(255) DEFAULT NULL,
  1003. PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  1004. KEY `entity_type` (`entity_type`),
  1005. KEY `bundle` (`bundle`),
  1006. KEY `deleted` (`deleted`),
  1007. KEY `entity_id` (`entity_id`),
  1008. KEY `revision_id` (`revision_id`),
  1009. KEY `language` (`language`),
  1010. KEY `field_fc_body_format` (`field_fc_body_format`)
  1011. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Revision archive storage for field 7 (field_fc_body)';
  1012. /*!40101 SET character_set_client = @saved_cs_client */;
  1013. --
  1014. -- Dumping data for table `field_revision_field_fc_body`
  1015. --
  1016. LOCK TABLES `field_revision_field_fc_body` WRITE;
  1017. /*!40000 ALTER TABLE `field_revision_field_fc_body` DISABLE KEYS */;
  1018. INSERT INTO `field_revision_field_fc_body` VALUES ('field_collection_item','field_test_paragraphs_content',0,1,1,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sem et tortor consequat id. At tellus at urna condimentum mattis. Sed viverra ipsum nunc aliquet bibendum. Aliquam malesuada bibendum arcu vitae elementum curabitur vitae. Sollicitudin ac orci phasellus egestas tellus rutrum tellus pellentesque. Dis parturient montes nascetur ridiculus mus mauris vitae ultricies. Orci dapibus ultrices in iaculis. Blandit turpis cursus in hac habitasse platea dictumst quisque sagittis. Sapien faucibus et molestie ac feugiat. Arcu non sodales neque sodales ut etiam sit amet. Mauris pharetra et ultrices neque ornare.\r\n\r\nElementum eu facilisis sed odio morbi quis commodo odio aenean. Cursus turpis massa tincidunt dui ut ornare lectus sit. Facilisi nullam vehicula ipsum a arcu cursus. Luctus venenatis lectus magna fringilla urna porttitor rhoncus dolor. Tortor at auctor urna nunc id cursus metus. Vulputate eu scelerisque felis imperdiet proin fermentum leo. Posuere urna nec tincidunt praesent semper feugiat nibh sed pulvinar. Aliquet risus feugiat in ante metus dictum at tempor. Purus viverra accumsan in nisl nisi. Cursus metus aliquam eleifend mi in nulla posuere. Eu feugiat pretium nibh ipsum consequat. Est lorem ipsum dolor sit amet. Pharetra vel turpis nunc eget lorem.',NULL),('field_collection_item','field_test_paragraphs_content',0,2,2,'und',0,'Est sit amet facilisis magna etiam tempor orci. Vivamus at augue eget arcu dictum varius duis at consectetur. Ipsum a arcu cursus vitae congue mauris rhoncus. In est ante in nibh mauris cursus mattis molestie a. Risus commodo viverra maecenas accumsan lacus vel facilisis. Montes nascetur ridiculus mus mauris vitae ultricies. Tempus iaculis urna id volutpat lacus laoreet non curabitur gravida. Morbi tincidunt augue interdum velit euismod in pellentesque massa placerat. Eu non diam phasellus vestibulum lorem sed. Varius quam quisque id diam vel quam elementum pulvinar. Id nibh tortor id aliquet lectus proin nibh nisl. Massa tincidunt nunc pulvinar sapien et ligula. Sed tempus urna et pharetra pharetra massa massa ultricies mi.',NULL),('field_collection_item','field_test_paragraphs_content',0,3,3,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Convallis posuere morbi leo urna molestie at elementum. Elementum eu facilisis sed odio morbi quis. Eget dolor morbi non arcu risus quis varius quam quisque. Vel pretium lectus quam id leo.',NULL),('field_collection_item','field_test_paragraphs_content',0,4,4,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ullamcorper velit sed ullamcorper morbi tincidunt ornare. Volutpat diam ut venenatis tellus. Egestas integer eget aliquet nibh praesent tristique magna. Tortor at risus viverra adipiscing at in tellus integer feugiat. At in tellus integer feugiat scelerisque varius morbi enim nunc. Vel fringilla est ullamcorper eget nulla. Mauris cursus mattis molestie a iaculis at. Amet nulla facilisi morbi tempus iaculis urna id volutpat lacus. Nisl suscipit adipiscing bibendum est ultricies integer. Id leo in vitae turpis. Ac tincidunt vitae semper quis lectus nulla at volutpat. Mi in nulla posuere sollicitudin aliquam ultrices. A condimentum vitae sapien pellentesque habitant morbi. Tristique nulla aliquet enim tortor. Pulvinar etiam non quam lacus suspendisse faucibus interdum posuere. Ipsum dolor sit amet consectetur adipiscing elit ut aliquam. Velit aliquet sagittis id consectetur purus ut faucibus pulvinar elementum. Velit sed ullamcorper morbi tincidunt ornare massa eget egestas.\r\n\r\nConsectetur adipiscing elit duis tristique sollicitudin nibh sit amet. Viverra mauris in aliquam sem. Diam vel quam elementum pulvinar etiam non quam lacus. Leo integer malesuada nunc vel risus. Eros donec ac odio tempor
  1019. /*!40000 ALTER TABLE `field_revision_field_fc_body` ENABLE KEYS */;
  1020. UNLOCK TABLES;
  1021. --
  1022. -- Table structure for table `field_revision_field_fc_title`
  1023. --
  1024. DROP TABLE IF EXISTS `field_revision_field_fc_title`;
  1025. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1026. /*!40101 SET character_set_client = utf8 */;
  1027. CREATE TABLE `field_revision_field_fc_title` (
  1028. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  1029. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1030. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1031. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1032. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1033. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  1034. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1035. `field_fc_title_value` varchar(255) DEFAULT NULL,
  1036. `field_fc_title_format` varchar(255) DEFAULT NULL,
  1037. PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  1038. KEY `entity_type` (`entity_type`),
  1039. KEY `bundle` (`bundle`),
  1040. KEY `deleted` (`deleted`),
  1041. KEY `entity_id` (`entity_id`),
  1042. KEY `revision_id` (`revision_id`),
  1043. KEY `language` (`language`),
  1044. KEY `field_fc_title_format` (`field_fc_title_format`)
  1045. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Revision archive storage for field 6 (field_fc_title)';
  1046. /*!40101 SET character_set_client = @saved_cs_client */;
  1047. --
  1048. -- Dumping data for table `field_revision_field_fc_title`
  1049. --
  1050. LOCK TABLES `field_revision_field_fc_title` WRITE;
  1051. /*!40000 ALTER TABLE `field_revision_field_fc_title` DISABLE KEYS */;
  1052. INSERT INTO `field_revision_field_fc_title` VALUES ('field_collection_item','field_test_paragraphs_content',0,1,1,'und',0,'dis parturient montes nascetur ridiculus',NULL),('field_collection_item','field_test_paragraphs_content',0,2,2,'und',0,'lorem ipsum dolor sit amet',NULL),('field_collection_item','field_test_paragraphs_content',0,3,3,'und',0,'massa tincidunt dui ut ornare',NULL),('field_collection_item','field_test_paragraphs_content',0,4,4,'und',0,'in hendrerit gravida rutrum quisque non',NULL),('field_collection_item','field_test_paragraphs_content',0,5,5,'und',0,'sed do eiusmod',NULL),('field_collection_item','field_test_paragraphs_content',0,6,6,'und',0,'Justo nec ultrices dui',NULL),('field_collection_item','field_test_paragraphs_content',0,7,7,'und',0,'Orci dapibus ultrices in iaculis',NULL);
  1053. /*!40000 ALTER TABLE `field_revision_field_fc_title` ENABLE KEYS */;
  1054. UNLOCK TABLES;
  1055. --
  1056. -- Table structure for table `field_revision_field_image`
  1057. --
  1058. DROP TABLE IF EXISTS `field_revision_field_image`;
  1059. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1060. /*!40101 SET character_set_client = utf8 */;
  1061. CREATE TABLE `field_revision_field_image` (
  1062. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  1063. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1064. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1065. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1066. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1067. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  1068. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1069. `field_image_fid` int(10) unsigned DEFAULT NULL COMMENT 'The file_managed.fid being referenced in this field.',
  1070. `field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.',
  1071. `field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.',
  1072. `field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.',
  1073. `field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.',
  1074. PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  1075. KEY `entity_type` (`entity_type`),
  1076. KEY `bundle` (`bundle`),
  1077. KEY `deleted` (`deleted`),
  1078. KEY `entity_id` (`entity_id`),
  1079. KEY `revision_id` (`revision_id`),
  1080. KEY `language` (`language`),
  1081. KEY `field_image_fid` (`field_image_fid`)
  1082. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Revision archive storage for field 4 (field_image)';
  1083. /*!40101 SET character_set_client = @saved_cs_client */;
  1084. --
  1085. -- Dumping data for table `field_revision_field_image`
  1086. --
  1087. LOCK TABLES `field_revision_field_image` WRITE;
  1088. /*!40000 ALTER TABLE `field_revision_field_image` DISABLE KEYS */;
  1089. /*!40000 ALTER TABLE `field_revision_field_image` ENABLE KEYS */;
  1090. UNLOCK TABLES;
  1091. --
  1092. -- Table structure for table `field_revision_field_should_be_page_body`
  1093. --
  1094. DROP TABLE IF EXISTS `field_revision_field_should_be_page_body`;
  1095. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1096. /*!40101 SET character_set_client = utf8 */;
  1097. CREATE TABLE `field_revision_field_should_be_page_body` (
  1098. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  1099. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1100. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1101. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1102. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1103. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  1104. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1105. `field_should_be_page_body_value` longtext,
  1106. `field_should_be_page_body_summary` longtext,
  1107. `field_should_be_page_body_format` varchar(255) DEFAULT NULL,
  1108. PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  1109. KEY `entity_type` (`entity_type`),
  1110. KEY `bundle` (`bundle`),
  1111. KEY `deleted` (`deleted`),
  1112. KEY `entity_id` (`entity_id`),
  1113. KEY `revision_id` (`revision_id`),
  1114. KEY `language` (`language`),
  1115. KEY `field_should_be_page_body_format` (`field_should_be_page_body_format`)
  1116. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Revision archive storage for field 8 (field_should_be...';
  1117. /*!40101 SET character_set_client = @saved_cs_client */;
  1118. --
  1119. -- Dumping data for table `field_revision_field_should_be_page_body`
  1120. --
  1121. LOCK TABLES `field_revision_field_should_be_page_body` WRITE;
  1122. /*!40000 ALTER TABLE `field_revision_field_should_be_page_body` DISABLE KEYS */;
  1123. INSERT INTO `field_revision_field_should_be_page_body` VALUES ('node','should_have_been_page',0,7,7,'und',0,'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Molestie a iaculis at erat. Erat velit scelerisque in dictum non consectetur a erat. Nisl pretium fusce id velit ut tortor pretium.','','filtered_html');
  1124. /*!40000 ALTER TABLE `field_revision_field_should_be_page_body` ENABLE KEYS */;
  1125. UNLOCK TABLES;
  1126. --
  1127. -- Table structure for table `field_revision_field_tags`
  1128. --
  1129. DROP TABLE IF EXISTS `field_revision_field_tags`;
  1130. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1131. /*!40101 SET character_set_client = utf8 */;
  1132. CREATE TABLE `field_revision_field_tags` (
  1133. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  1134. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1135. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1136. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1137. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1138. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  1139. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1140. `field_tags_tid` int(10) unsigned DEFAULT NULL,
  1141. PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  1142. KEY `entity_type` (`entity_type`),
  1143. KEY `bundle` (`bundle`),
  1144. KEY `deleted` (`deleted`),
  1145. KEY `entity_id` (`entity_id`),
  1146. KEY `revision_id` (`revision_id`),
  1147. KEY `language` (`language`),
  1148. KEY `field_tags_tid` (`field_tags_tid`)
  1149. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Revision archive storage for field 3 (field_tags)';
  1150. /*!40101 SET character_set_client = @saved_cs_client */;
  1151. --
  1152. -- Dumping data for table `field_revision_field_tags`
  1153. --
  1154. LOCK TABLES `field_revision_field_tags` WRITE;
  1155. /*!40000 ALTER TABLE `field_revision_field_tags` DISABLE KEYS */;
  1156. /*!40000 ALTER TABLE `field_revision_field_tags` ENABLE KEYS */;
  1157. UNLOCK TABLES;
  1158. --
  1159. -- Table structure for table `field_revision_field_test_paragraphs_content`
  1160. --
  1161. DROP TABLE IF EXISTS `field_revision_field_test_paragraphs_content`;
  1162. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1163. /*!40101 SET character_set_client = utf8 */;
  1164. CREATE TABLE `field_revision_field_test_paragraphs_content` (
  1165. `entity_type` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity type this data is attached to',
  1166. `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance',
  1167. `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted',
  1168. `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to',
  1169. `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to',
  1170. `language` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language for this data item.',
  1171. `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields',
  1172. `field_test_paragraphs_content_value` int(11) DEFAULT NULL COMMENT 'The field collection item id.',
  1173. `field_test_paragraphs_content_revision_id` int(11) DEFAULT NULL COMMENT 'The field collection item revision id.',
  1174. PRIMARY KEY (`entity_type`,`entity_id`,`revision_id`,`deleted`,`delta`,`language`),
  1175. KEY `entity_type` (`entity_type`),
  1176. KEY `bundle` (`bundle`),
  1177. KEY `deleted` (`deleted`),
  1178. KEY `entity_id` (`entity_id`),
  1179. KEY `revision_id` (`revision_id`),
  1180. KEY `language` (`language`),
  1181. KEY `field_test_paragraphs_content_value` (`field_test_paragraphs_content_value`),
  1182. KEY `field_test_paragraphs_content_revision_id` (`field_test_paragraphs_content_revision_id`)
  1183. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Revision archive storage for field 5 (field_test...';
  1184. /*!40101 SET character_set_client = @saved_cs_client */;
  1185. --
  1186. -- Dumping data for table `field_revision_field_test_paragraphs_content`
  1187. --
  1188. LOCK TABLES `field_revision_field_test_paragraphs_content` WRITE;
  1189. /*!40000 ALTER TABLE `field_revision_field_test_paragraphs_content` DISABLE KEYS */;
  1190. INSERT INTO `field_revision_field_test_paragraphs_content` VALUES ('node','test_paragraphs',0,1,1,'und',0,1,1),('node','test_paragraphs',0,1,1,'und',1,2,2),('node','test_paragraphs',0,1,1,'und',2,3,3),('node','test_paragraphs',0,2,2,'und',0,4,4),('node','test_paragraphs',0,2,2,'und',1,5,5),('node','test_paragraphs',0,3,3,'und',0,6,6),('node','test_paragraphs',0,3,3,'und',1,7,7);
  1191. /*!40000 ALTER TABLE `field_revision_field_test_paragraphs_content` ENABLE KEYS */;
  1192. UNLOCK TABLES;
  1193. --
  1194. -- Table structure for table `file_managed`
  1195. --
  1196. DROP TABLE IF EXISTS `file_managed`;
  1197. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1198. /*!40101 SET character_set_client = utf8 */;
  1199. CREATE TABLE `file_managed` (
  1200. `fid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'File ID.',
  1201. `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid of the user who is associated with the file.',
  1202. `filename` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the file with no path components. This may differ from the basename of the URI if the file is renamed to avoid overwriting an existing file.',
  1203. `uri` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '' COMMENT 'The URI to access the file (either local or remote).',
  1204. `filemime` varchar(255) NOT NULL DEFAULT '' COMMENT 'The file’s MIME type.',
  1205. `filesize` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'The size of the file in bytes.',
  1206. `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A field indicating the status of the file. Two status are defined in core: temporary (0) and permanent (1). Temporary files older than DRUPAL_MAXIMUM_TEMP_FILE_AGE will be removed during a cron run.',
  1207. `timestamp` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'UNIX timestamp for when the file was added.',
  1208. PRIMARY KEY (`fid`),
  1209. UNIQUE KEY `uri` (`uri`),
  1210. KEY `uid` (`uid`),
  1211. KEY `status` (`status`),
  1212. KEY `timestamp` (`timestamp`)
  1213. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores information for uploaded files.';
  1214. /*!40101 SET character_set_client = @saved_cs_client */;
  1215. --
  1216. -- Dumping data for table `file_managed`
  1217. --
  1218. LOCK TABLES `file_managed` WRITE;
  1219. /*!40000 ALTER TABLE `file_managed` DISABLE KEYS */;
  1220. /*!40000 ALTER TABLE `file_managed` ENABLE KEYS */;
  1221. UNLOCK TABLES;
  1222. --
  1223. -- Table structure for table `file_usage`
  1224. --
  1225. DROP TABLE IF EXISTS `file_usage`;
  1226. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1227. /*!40101 SET character_set_client = utf8 */;
  1228. CREATE TABLE `file_usage` (
  1229. `fid` int(10) unsigned NOT NULL COMMENT 'File ID.',
  1230. `module` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the module that is using the file.',
  1231. `type` varchar(64) NOT NULL DEFAULT '' COMMENT 'The name of the object type in which the file is used.',
  1232. `id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The primary key of the object using the file.',
  1233. `count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The number of times this file is used by this object.',
  1234. PRIMARY KEY (`fid`,`type`,`id`,`module`),
  1235. KEY `type_id` (`type`,`id`),
  1236. KEY `fid_count` (`fid`,`count`),
  1237. KEY `fid_module` (`fid`,`module`)
  1238. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Track where a file is used.';
  1239. /*!40101 SET character_set_client = @saved_cs_client */;
  1240. --
  1241. -- Dumping data for table `file_usage`
  1242. --
  1243. LOCK TABLES `file_usage` WRITE;
  1244. /*!40000 ALTER TABLE `file_usage` DISABLE KEYS */;
  1245. /*!40000 ALTER TABLE `file_usage` ENABLE KEYS */;
  1246. UNLOCK TABLES;
  1247. --
  1248. -- Table structure for table `filter`
  1249. --
  1250. DROP TABLE IF EXISTS `filter`;
  1251. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1252. /*!40101 SET character_set_client = utf8 */;
  1253. CREATE TABLE `filter` (
  1254. `format` varchar(255) NOT NULL COMMENT 'Foreign key: The filter_format.format to which this filter is assigned.',
  1255. `module` varchar(64) NOT NULL DEFAULT '' COMMENT 'The origin module of the filter.',
  1256. `name` varchar(32) NOT NULL DEFAULT '' COMMENT 'Name of the filter being referenced.',
  1257. `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'Weight of filter within format.',
  1258. `status` int(11) NOT NULL DEFAULT '0' COMMENT 'Filter enabled status. (1 = enabled, 0 = disabled)',
  1259. `settings` longblob COMMENT 'A serialized array of name value pairs that store the filter settings for the specific format.',
  1260. PRIMARY KEY (`format`,`name`),
  1261. KEY `list` (`weight`,`module`,`name`)
  1262. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Table that maps filters (HTML corrector) to text formats ...';
  1263. /*!40101 SET character_set_client = @saved_cs_client */;
  1264. --
  1265. -- Dumping data for table `filter`
  1266. --
  1267. LOCK TABLES `filter` WRITE;
  1268. /*!40000 ALTER TABLE `filter` DISABLE KEYS */;
  1269. INSERT INTO `filter` VALUES ('filtered_html','filter','filter_autop',2,1,'a:0:{}'),('filtered_html','filter','filter_html',1,1,'a:3:{s:12:\"allowed_html\";s:74:\"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>\";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}'),('filtered_html','filter','filter_htmlcorrector',10,1,'a:0:{}'),('filtered_html','filter','filter_html_escape',-10,0,'a:0:{}'),('filtered_html','filter','filter_url',0,1,'a:1:{s:17:\"filter_url_length\";i:72;}'),('full_html','filter','filter_autop',1,1,'a:0:{}'),('full_html','filter','filter_html',-10,0,'a:3:{s:12:\"allowed_html\";s:74:\"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>\";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}'),('full_html','filter','filter_htmlcorrector',10,1,'a:0:{}'),('full_html','filter','filter_html_escape',-10,0,'a:0:{}'),('full_html','filter','filter_url',0,1,'a:1:{s:17:\"filter_url_length\";i:72;}'),('plain_text','filter','filter_autop',2,1,'a:0:{}'),('plain_text','filter','filter_html',-10,0,'a:3:{s:12:\"allowed_html\";s:74:\"<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd>\";s:16:\"filter_html_help\";i:1;s:20:\"filter_html_nofollow\";i:0;}'),('plain_text','filter','filter_htmlcorrector',10,0,'a:0:{}'),('plain_text','filter','filter_html_escape',0,1,'a:0:{}'),('plain_text','filter','filter_url',1,1,'a:1:{s:17:\"filter_url_length\";i:72;}');
  1270. /*!40000 ALTER TABLE `filter` ENABLE KEYS */;
  1271. UNLOCK TABLES;
  1272. --
  1273. -- Table structure for table `filter_format`
  1274. --
  1275. DROP TABLE IF EXISTS `filter_format`;
  1276. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1277. /*!40101 SET character_set_client = utf8 */;
  1278. CREATE TABLE `filter_format` (
  1279. `format` varchar(255) NOT NULL COMMENT 'Primary Key: Unique machine name of the format.',
  1280. `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the text format (Filtered HTML).',
  1281. `cache` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Flag to indicate whether format is cacheable. (1 = cacheable, 0 = not cacheable)',
  1282. `status` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT 'The status of the text format. (1 = enabled, 0 = disabled)',
  1283. `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'Weight of text format to use when listing.',
  1284. PRIMARY KEY (`format`),
  1285. UNIQUE KEY `name` (`name`),
  1286. KEY `status_weight` (`status`,`weight`)
  1287. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores text formats: custom groupings of filters, such as...';
  1288. /*!40101 SET character_set_client = @saved_cs_client */;
  1289. --
  1290. -- Dumping data for table `filter_format`
  1291. --
  1292. LOCK TABLES `filter_format` WRITE;
  1293. /*!40000 ALTER TABLE `filter_format` DISABLE KEYS */;
  1294. INSERT INTO `filter_format` VALUES ('filtered_html','Filtered HTML',1,1,0),('full_html','Full HTML',1,1,1),('plain_text','Plain text',1,1,10);
  1295. /*!40000 ALTER TABLE `filter_format` ENABLE KEYS */;
  1296. UNLOCK TABLES;
  1297. --
  1298. -- Table structure for table `flood`
  1299. --
  1300. DROP TABLE IF EXISTS `flood`;
  1301. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1302. /*!40101 SET character_set_client = utf8 */;
  1303. CREATE TABLE `flood` (
  1304. `fid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Unique flood event ID.',
  1305. `event` varchar(64) NOT NULL DEFAULT '' COMMENT 'Name of event (e.g. contact).',
  1306. `identifier` varchar(128) NOT NULL DEFAULT '' COMMENT 'Identifier of the visitor, such as an IP address or hostname.',
  1307. `timestamp` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp of the event.',
  1308. `expiration` int(11) NOT NULL DEFAULT '0' COMMENT 'Expiration timestamp. Expired events are purged on cron run.',
  1309. PRIMARY KEY (`fid`),
  1310. KEY `allow` (`event`,`identifier`,`timestamp`),
  1311. KEY `purge` (`expiration`)
  1312. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Flood controls the threshold of events, such as the...';
  1313. /*!40101 SET character_set_client = @saved_cs_client */;
  1314. --
  1315. -- Dumping data for table `flood`
  1316. --
  1317. LOCK TABLES `flood` WRITE;
  1318. /*!40000 ALTER TABLE `flood` DISABLE KEYS */;
  1319. /*!40000 ALTER TABLE `flood` ENABLE KEYS */;
  1320. UNLOCK TABLES;
  1321. --
  1322. -- Table structure for table `history`
  1323. --
  1324. DROP TABLE IF EXISTS `history`;
  1325. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1326. /*!40101 SET character_set_client = utf8 */;
  1327. CREATE TABLE `history` (
  1328. `uid` int(11) NOT NULL DEFAULT '0' COMMENT 'The users.uid that read the node nid.',
  1329. `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid that was read.',
  1330. `timestamp` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp at which the read occurred.',
  1331. PRIMARY KEY (`uid`,`nid`),
  1332. KEY `nid` (`nid`)
  1333. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='A record of which users have read which nodes.';
  1334. /*!40101 SET character_set_client = @saved_cs_client */;
  1335. --
  1336. -- Dumping data for table `history`
  1337. --
  1338. LOCK TABLES `history` WRITE;
  1339. /*!40000 ALTER TABLE `history` DISABLE KEYS */;
  1340. INSERT INTO `history` VALUES (1,1,1588735441),(1,2,1588735498),(1,3,1588735688),(1,4,1588735638),(1,5,1588735654),(1,6,1588735676),(1,7,1588737808);
  1341. /*!40000 ALTER TABLE `history` ENABLE KEYS */;
  1342. UNLOCK TABLES;
  1343. --
  1344. -- Table structure for table `image_effects`
  1345. --
  1346. DROP TABLE IF EXISTS `image_effects`;
  1347. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1348. /*!40101 SET character_set_client = utf8 */;
  1349. CREATE TABLE `image_effects` (
  1350. `ieid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for an image effect.',
  1351. `isid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The image_styles.isid for an image style.',
  1352. `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'The weight of the effect in the style.',
  1353. `name` varchar(255) NOT NULL COMMENT 'The unique name of the effect to be executed.',
  1354. `data` longblob NOT NULL COMMENT 'The configuration data for the effect.',
  1355. PRIMARY KEY (`ieid`),
  1356. KEY `isid` (`isid`),
  1357. KEY `weight` (`weight`)
  1358. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores configuration options for image effects.';
  1359. /*!40101 SET character_set_client = @saved_cs_client */;
  1360. --
  1361. -- Dumping data for table `image_effects`
  1362. --
  1363. LOCK TABLES `image_effects` WRITE;
  1364. /*!40000 ALTER TABLE `image_effects` DISABLE KEYS */;
  1365. /*!40000 ALTER TABLE `image_effects` ENABLE KEYS */;
  1366. UNLOCK TABLES;
  1367. --
  1368. -- Table structure for table `image_styles`
  1369. --
  1370. DROP TABLE IF EXISTS `image_styles`;
  1371. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1372. /*!40101 SET character_set_client = utf8 */;
  1373. CREATE TABLE `image_styles` (
  1374. `isid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for an image style.',
  1375. `name` varchar(255) NOT NULL COMMENT 'The style machine name.',
  1376. `label` varchar(255) NOT NULL DEFAULT '' COMMENT 'The style administrative name.',
  1377. PRIMARY KEY (`isid`),
  1378. UNIQUE KEY `name` (`name`)
  1379. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores configuration options for image styles.';
  1380. /*!40101 SET character_set_client = @saved_cs_client */;
  1381. --
  1382. -- Dumping data for table `image_styles`
  1383. --
  1384. LOCK TABLES `image_styles` WRITE;
  1385. /*!40000 ALTER TABLE `image_styles` DISABLE KEYS */;
  1386. /*!40000 ALTER TABLE `image_styles` ENABLE KEYS */;
  1387. UNLOCK TABLES;
  1388. --
  1389. -- Table structure for table `menu_custom`
  1390. --
  1391. DROP TABLE IF EXISTS `menu_custom`;
  1392. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1393. /*!40101 SET character_set_client = utf8 */;
  1394. CREATE TABLE `menu_custom` (
  1395. `menu_name` varchar(32) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique key for menu. This is used as a block delta so length is 32.',
  1396. `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'Menu title; displayed at top of block.',
  1397. `description` text COMMENT 'Menu description.',
  1398. PRIMARY KEY (`menu_name`)
  1399. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Holds definitions for top-level custom menus (for example...';
  1400. /*!40101 SET character_set_client = @saved_cs_client */;
  1401. --
  1402. -- Dumping data for table `menu_custom`
  1403. --
  1404. LOCK TABLES `menu_custom` WRITE;
  1405. /*!40000 ALTER TABLE `menu_custom` DISABLE KEYS */;
  1406. INSERT INTO `menu_custom` VALUES ('main-menu','Main menu','The <em>Main</em> menu is used on many sites to show the major sections of the site, often in a top navigation bar.'),('management','Management','The <em>Management</em> menu contains links for administrative tasks.'),('navigation','Navigation','The <em>Navigation</em> menu contains links intended for site visitors. Links are added to the <em>Navigation</em> menu automatically by some modules.'),('user-menu','User menu','The <em>User</em> menu contains links related to the user\'s account, as well as the \'Log out\' link.');
  1407. /*!40000 ALTER TABLE `menu_custom` ENABLE KEYS */;
  1408. UNLOCK TABLES;
  1409. --
  1410. -- Table structure for table `menu_links`
  1411. --
  1412. DROP TABLE IF EXISTS `menu_links`;
  1413. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1414. /*!40101 SET character_set_client = utf8 */;
  1415. CREATE TABLE `menu_links` (
  1416. `menu_name` varchar(32) NOT NULL DEFAULT '' COMMENT 'The menu name. All links with the same menu name (such as ’navigation’) are part of the same menu.',
  1417. `mlid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The menu link ID (mlid) is the integer primary key.',
  1418. `plid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The parent link ID (plid) is the mlid of the link above in the hierarchy, or zero if the link is at the top level in its menu.',
  1419. `link_path` varchar(255) NOT NULL DEFAULT '' COMMENT 'The Drupal path or external path this link points to.',
  1420. `router_path` varchar(255) NOT NULL DEFAULT '' COMMENT 'For links corresponding to a Drupal path (external = 0), this connects the link to a menu_router.path for joins.',
  1421. `link_title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The text displayed for the link, which may be modified by a title callback stored in menu_router.',
  1422. `options` blob COMMENT 'A serialized array of options to be passed to the url() or l() function, such as a query string or HTML attributes.',
  1423. `module` varchar(255) NOT NULL DEFAULT 'system' COMMENT 'The name of the module that generated this link.',
  1424. `hidden` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag for whether the link should be rendered in menus. (1 = a disabled menu item that may be shown on admin screens, -1 = a menu callback, 0 = a normal, visible link)',
  1425. `external` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate if the link points to a full URL starting with a protocol, like http:// (1 = external, 0 = internal).',
  1426. `has_children` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Flag indicating whether any links have this link as a parent (1 = children exist, 0 = no children).',
  1427. `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)',
  1428. `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'Link weight among links in the same menu at the same depth.',
  1429. `depth` smallint(6) NOT NULL DEFAULT '0' COMMENT 'The depth relative to the top level. A link with plid == 0 will have depth == 1.',
  1430. `customized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate that the user has manually created or edited the link (1 = customized, 0 = not customized).',
  1431. `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 plid. All pX where X > depth must equal zero. The columns p1 .. p9 are also called the parents.',
  1432. `p2` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The second mlid in the materialized path. See p1.',
  1433. `p3` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The third mlid in the materialized path. See p1.',
  1434. `p4` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The fourth mlid in the materialized path. See p1.',
  1435. `p5` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The fifth mlid in the materialized path. See p1.',
  1436. `p6` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The sixth mlid in the materialized path. See p1.',
  1437. `p7` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The seventh mlid in the materialized path. See p1.',
  1438. `p8` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The eighth mlid in the materialized path. See p1.',
  1439. `p9` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The ninth mlid in the materialized path. See p1.',
  1440. `updated` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Flag that indicates that this link was generated during the update from Drupal 5.',
  1441. PRIMARY KEY (`mlid`),
  1442. KEY `path_menu` (`link_path`(128),`menu_name`),
  1443. KEY `menu_plid_expand_child` (`menu_name`,`plid`,`expanded`,`has_children`),
  1444. KEY `menu_parents` (`menu_name`,`p1`,`p2`,`p3`,`p4`,`p5`,`p6`,`p7`,`p8`,`p9`),
  1445. KEY `router_path` (`router_path`(128))
  1446. ) ENGINE=InnoDB AUTO_INCREMENT=281 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Contains the individual links within a menu.';
  1447. /*!40101 SET character_set_client = @saved_cs_client */;
  1448. --
  1449. -- Dumping data for table `menu_links`
  1450. --
  1451. LOCK TABLES `menu_links` WRITE;
  1452. /*!40000 ALTER TABLE `menu_links` DISABLE KEYS */;
  1453. INSERT INTO `menu_links` VALUES ('management',1,0,'admin','admin','Administration','a:0:{}','system',0,0,1,0,9,1,0,1,0,0,0,0,0,0,0,0,0),('user-menu',2,0,'user','user','User account','a:1:{s:5:\"alter\";b:1;}','system',0,0,0,0,-10,1,0,2,0,0,0,0,0,0,0,0,0),('navigation',3,0,'comment/%','comment/%','Comment permalink','a:0:{}','system',0,0,1,0,0,1,0,3,0,0,0,0,0,0,0,0,0),('navigation',4,0,'filter/tips','filter/tips','Compose tips','a:0:{}','system',1,0,1,0,0,1,0,4,0,0,0,0,0,0,0,0,0),('navigation',5,0,'node/%','node/%','','a:0:{}','system',0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0),('navigation',6,0,'node/add','node/add','Add content','a:0:{}','system',0,0,1,0,0,1,0,6,0,0,0,0,0,0,0,0,0),('management',7,1,'admin/appearance','admin/appearance','Appearance','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:33:\"Select and configure your themes.\";}}','system',0,0,0,0,-6,2,0,1,7,0,0,0,0,0,0,0,0),('management',8,1,'admin/config','admin/config','Configuration','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:20:\"Administer settings.\";}}','system',0,0,1,0,0,2,0,1,8,0,0,0,0,0,0,0,0),('management',9,1,'admin/content','admin/content','Content','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:32:\"Administer content and comments.\";}}','system',0,0,1,0,-10,2,0,1,9,0,0,0,0,0,0,0,0),('user-menu',10,2,'user/register','user/register','Create new account','a:0:{}','system',-1,0,0,0,0,2,0,2,10,0,0,0,0,0,0,0,0),('management',11,1,'admin/dashboard','admin/dashboard','Dashboard','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View and customize your dashboard.\";}}','system',0,0,0,0,-15,2,0,1,11,0,0,0,0,0,0,0,0),('management',12,1,'admin/help','admin/help','Help','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:48:\"Reference for usage, configuration, and modules.\";}}','system',0,0,0,0,9,2,0,1,12,0,0,0,0,0,0,0,0),('management',13,1,'admin/index','admin/index','Index','a:0:{}','system',-1,0,0,0,-18,2,0,1,13,0,0,0,0,0,0,0,0),('user-menu',14,2,'user/login','user/login','Log in','a:0:{}','system',-1,0,0,0,0,2,0,2,14,0,0,0,0,0,0,0,0),('user-menu',15,0,'user/logout','user/logout','Log out','a:0:{}','system',0,0,0,0,10,1,0,15,0,0,0,0,0,0,0,0,0),('management',16,1,'admin/modules','admin/modules','Modules','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:26:\"Extend site functionality.\";}}','system',0,0,0,0,-2,2,0,1,16,0,0,0,0,0,0,0,0),('navigation',17,0,'user/%','user/%','My account','a:0:{}','system',0,0,1,0,0,1,0,17,0,0,0,0,0,0,0,0,0),('management',18,1,'admin/people','admin/people','People','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Manage user accounts, roles, and permissions.\";}}','system',0,0,0,0,-4,2,0,1,18,0,0,0,0,0,0,0,0),('management',19,1,'admin/reports','admin/reports','Reports','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:34:\"View reports, updates, and errors.\";}}','system',0,0,1,0,5,2,0,1,19,0,0,0,0,0,0,0,0),('user-menu',20,2,'user/password','user/password','Request new password','a:0:{}','system',-1,0,0,0,0,2,0,2,20,0,0,0,0,0,0,0,0),('management',21,1,'admin/structure','admin/structure','Structure','a:1:{s:10:\"attributes\";a:1:{s:5:\"title\";s:45:\"Administer blocks, content types, menus, etc.\";}}','system',0,0,1,0,-8,2,0,1,21,0,0,0,0,0,0,0,0),('management',22,1,'admin/tasks','admin/tasks','Tasks','a:0:{}','system',-1,0,0,0,-20,2,0,1,22,0,0,0,0,0,0,0,0),('navigation',23,0,'comment/reply/%','comment/reply/%','Add new comment','a:0:{}','system',0,0,0,0,0,1,0,23,0,0,0,0,0,0,0,0,0),('navigation',24,3,'comment/%/approve','comment/%/approve','Approve','a:0:{}','system',0,0,0,0,1,2,0,3,24,0,0,0,0,0,0,0,0),('navigation',25,4,'filter/tips/%','filter/tips/%','Compose tips','a:0:{}','system',0,0,0,0,0,2,0,4,25,0,0,0,0,0,0,0,0),('navigation',26,3,'comment/%/delete','comment/%/delete','Delete','a:0:{}','system',-1,0,0,0,2,2,0,3,26,0,0,0,0,0,0,0,0),('navigation',27,3,'comment/%/edit','comment/%/edit','Edit','a:0:{}','system',-1,0,0,0,0,2,0,3,27,0,0,0,0,0,0,0,0),('navigation',28,0,'taxonomy/term/%','taxonomy/term/%','Taxonomy term','a:0:{}','system',0,0,0,0,0,1,0,28,0,0,0,0,0,0,0,0,0),('navigation',29,3,'comment/%/view','comment/%/view','View comm
  1454. /*!40000 ALTER TABLE `menu_links` ENABLE KEYS */;
  1455. UNLOCK TABLES;
  1456. --
  1457. -- Table structure for table `menu_router`
  1458. --
  1459. DROP TABLE IF EXISTS `menu_router`;
  1460. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1461. /*!40101 SET character_set_client = utf8 */;
  1462. CREATE TABLE `menu_router` (
  1463. `path` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: the Drupal path this entry describes',
  1464. `load_functions` blob NOT NULL COMMENT 'A serialized array of function names (like node_load) to be called to load an object corresponding to a part of the current path.',
  1465. `to_arg_functions` blob NOT NULL COMMENT 'A serialized array of function names (like user_uid_optional_to_arg) to be called to replace a part of the router path with another string.',
  1466. `access_callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'The callback which determines the access to this router path. Defaults to user_access.',
  1467. `access_arguments` blob COMMENT 'A serialized array of arguments for the access callback.',
  1468. `page_callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the function that renders the page.',
  1469. `page_arguments` blob COMMENT 'A serialized array of arguments for the page callback.',
  1470. `delivery_callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the function that sends the result of the page_callback function to the browser.',
  1471. `fit` int(11) NOT NULL DEFAULT '0' COMMENT 'A numeric representation of how specific the path is.',
  1472. `number_parts` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Number of parts in this router path.',
  1473. `context` int(11) NOT NULL DEFAULT '0' COMMENT 'Only for local tasks (tabs) - the context of a local task to control its placement.',
  1474. `tab_parent` varchar(255) NOT NULL DEFAULT '' COMMENT 'Only for local tasks (tabs) - the router path of the parent page (which may also be a local task).',
  1475. `tab_root` varchar(255) NOT NULL DEFAULT '' COMMENT 'Router path of the closest non-tab parent page. For pages that are not local tasks, this will be the same as the path.',
  1476. `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The title for the current page, or the title for the tab if this is a local task.',
  1477. `title_callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'A function which will alter the title. Defaults to t()',
  1478. `title_arguments` varchar(255) NOT NULL DEFAULT '' COMMENT 'A serialized array of arguments for the title callback. If empty, the title will be used as the sole argument for the title callback.',
  1479. `theme_callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'A function which returns the name of the theme that will be used to render this page. If left empty, the default theme will be used.',
  1480. `theme_arguments` varchar(255) NOT NULL DEFAULT '' COMMENT 'A serialized array of arguments for the theme callback.',
  1481. `type` int(11) NOT NULL DEFAULT '0' COMMENT 'Numeric representation of the type of the menu item, like MENU_LOCAL_TASK.',
  1482. `description` text NOT NULL COMMENT 'A description of this item.',
  1483. `position` varchar(255) NOT NULL DEFAULT '' COMMENT 'The position of the block (left or right) on the system administration page for this item.',
  1484. `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'Weight of the element. Lighter weights are higher up, heavier weights go down.',
  1485. `include_file` mediumtext COMMENT 'The file to include for this element, usually the page callback function lives in this file.',
  1486. PRIMARY KEY (`path`),
  1487. KEY `fit` (`fit`),
  1488. KEY `tab_parent` (`tab_parent`(64),`weight`,`title`),
  1489. KEY `tab_root_weight_title` (`tab_root`(64),`weight`,`title`)
  1490. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Maps paths to various callbacks (access, page and title)';
  1491. /*!40101 SET character_set_client = @saved_cs_client */;
  1492. --
  1493. -- Dumping data for table `menu_router`
  1494. --
  1495. LOCK TABLES `menu_router` WRITE;
  1496. /*!40000 ALTER TABLE `menu_router` DISABLE KEYS */;
  1497. INSERT INTO `menu_router` VALUES ('admin','','','user_access','a:1:{i:0;s:27:\"access administration pages\";}','system_admin_menu_block_page','a:0:{}','',1,1,0,'','admin','Administration','t','','','a:0:{}',6,'','',9,'modules/system/system.admin.inc'),('admin/appearance','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_themes_page','a:0:{}','',3,2,0,'','admin/appearance','Appearance','t','','','a:0:{}',6,'Select and configure your themes.','left',-6,'modules/system/system.admin.inc'),('admin/appearance/default','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_theme_default','a:0:{}','',7,3,0,'','admin/appearance/default','Set default theme','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/appearance/disable','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_theme_disable','a:0:{}','',7,3,0,'','admin/appearance/disable','Disable theme','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/appearance/enable','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_theme_enable','a:0:{}','',7,3,0,'','admin/appearance/enable','Enable theme','t','','','a:0:{}',0,'','',0,'modules/system/system.admin.inc'),('admin/appearance/list','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','system_themes_page','a:0:{}','',7,3,1,'admin/appearance','admin/appearance','List','t','','','a:0:{}',140,'Select and configure your theme','',-1,'modules/system/system.admin.inc'),('admin/appearance/settings','','','user_access','a:1:{i:0;s:17:\"administer themes\";}','drupal_get_form','a:1:{i:0;s:21:\"system_theme_settings\";}','',7,3,1,'admin/appearance','admin/appearance','Settings','t','','','a:0:{}',132,'Configure default and theme specific settings.','',20,'modules/system/system.admin.inc'),('admin/appearance/settings/bartik','','','_system_themes_access','a:1:{i:0;O:8:\"stdClass\":12:{s:8:\"filename\";s:25:\"themes/bartik/bartik.info\";s:4:\"name\";s:6:\"bartik\";s:4:\"type\";s:5:\"theme\";s:5:\"owner\";s:45:\"themes/engines/phptemplate/phptemplate.engine\";s:6:\"status\";s:1:\"1\";s:9:\"bootstrap\";s:1:\"0\";s:14:\"schema_version\";s:2:\"-1\";s:6:\"weight\";s:1:\"0\";s:4:\"info\";a:19:{s:4:\"name\";s:6:\"Bartik\";s:11:\"description\";s:48:\"A flexible, recolorable theme with many regions.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.69\";s:4:\"core\";s:3:\"7.x\";s:11:\"stylesheets\";a:2:{s:3:\"all\";a:3:{s:14:\"css/layout.css\";s:28:\"themes/bartik/css/layout.css\";s:13:\"css/style.css\";s:27:\"themes/bartik/css/style.css\";s:14:\"css/colors.css\";s:28:\"themes/bartik/css/colors.css\";}s:5:\"print\";a:1:{s:13:\"css/print.css\";s:27:\"themes/bartik/css/print.css\";}}s:7:\"regions\";a:20:{s:6:\"header\";s:6:\"Header\";s:4:\"help\";s:4:\"Help\";s:8:\"page_top\";s:8:\"Page top\";s:11:\"page_bottom\";s:11:\"Page bottom\";s:11:\"highlighted\";s:11:\"Highlighted\";s:8:\"featured\";s:8:\"Featured\";s:7:\"content\";s:7:\"Content\";s:13:\"sidebar_first\";s:13:\"Sidebar first\";s:14:\"sidebar_second\";s:14:\"Sidebar second\";s:14:\"triptych_first\";s:14:\"Triptych first\";s:15:\"triptych_middle\";s:15:\"Triptych middle\";s:13:\"triptych_last\";s:13:\"Triptych last\";s:18:\"footer_firstcolumn\";s:19:\"Footer first column\";s:19:\"footer_secondcolumn\";s:20:\"Footer second column\";s:18:\"footer_thirdcolumn\";s:19:\"Footer third column\";s:19:\"footer_fourthcolumn\";s:20:\"Footer fourth column\";s:6:\"footer\";s:6:\"Footer\";s:14:\"dashboard_main\";s:16:\"Dashboard (main)\";s:17:\"dashboard_sidebar\";s:19:\"Dashboard (sidebar)\";s:18:\"dashboard_inactive\";s:20:\"Dashboard (inactive)\";}s:8:\"settings\";a:1:{s:20:\"shortcut_module_link\";s:1:\"0\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1576696221\";s:6:\"engine\";s:11:\"phptemplate\";s:8:\"features\";a:9:{i:0;s:4:\"logo\";i:1;s:7:\"favicon\";i:2;s:4:\"name\";i:3;s:6:\"slogan\";i:4;s:17:\"node_user_picture\";i:5;s:20:\"comment_user_picture\";i:6;s:25:\"comment_user_verification\";i:7;s:9:\"main_menu\";i:8;s:14:\"secondary_menu\";}s:10:\"screenshot\";s:28:\"them
  1498. /*!40000 ALTER TABLE `menu_router` ENABLE KEYS */;
  1499. UNLOCK TABLES;
  1500. --
  1501. -- Table structure for table `node`
  1502. --
  1503. DROP TABLE IF EXISTS `node`;
  1504. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1505. /*!40101 SET character_set_client = utf8 */;
  1506. CREATE TABLE `node` (
  1507. `nid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a node.',
  1508. `vid` int(10) unsigned DEFAULT NULL COMMENT 'The current node_revision.vid version identifier.',
  1509. `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'The node_type.type of this node.',
  1510. `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'The languages.language of this node.',
  1511. `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The title of this node, always treated as non-markup plain text.',
  1512. `uid` int(11) NOT NULL DEFAULT '0' COMMENT 'The users.uid that owns this node; initially, this is the user that created it.',
  1513. `status` int(11) NOT NULL DEFAULT '1' COMMENT 'Boolean indicating whether the node is published (visible to non-administrators).',
  1514. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the node was created.',
  1515. `changed` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the node was most recently saved.',
  1516. `comment` int(11) NOT NULL DEFAULT '0' COMMENT 'Whether comments are allowed on this node: 0 = no, 1 = closed (read only), 2 = open (read/write).',
  1517. `promote` int(11) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether the node should be displayed on the front page.',
  1518. `sticky` int(11) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether the node should be displayed at the top of lists in which it appears.',
  1519. `tnid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The translation set id for this node, which equals the node id of the source post in each set.',
  1520. `translate` int(11) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this translation page needs to be updated.',
  1521. PRIMARY KEY (`nid`),
  1522. UNIQUE KEY `vid` (`vid`),
  1523. KEY `node_changed` (`changed`),
  1524. KEY `node_created` (`created`),
  1525. KEY `node_frontpage` (`promote`,`status`,`sticky`,`created`),
  1526. KEY `node_status_type` (`status`,`type`,`nid`),
  1527. KEY `node_title_type` (`title`,`type`(4)),
  1528. KEY `node_type` (`type`(4)),
  1529. KEY `uid` (`uid`),
  1530. KEY `tnid` (`tnid`),
  1531. KEY `translate` (`translate`),
  1532. KEY `language` (`language`)
  1533. ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='The base table for nodes.';
  1534. /*!40101 SET character_set_client = @saved_cs_client */;
  1535. --
  1536. -- Dumping data for table `node`
  1537. --
  1538. LOCK TABLES `node` WRITE;
  1539. /*!40000 ALTER TABLE `node` DISABLE KEYS */;
  1540. INSERT INTO `node` VALUES (1,1,'test_paragraphs','und','sit amet purus gravida quis',1,1,1588735441,1588735441,2,0,0,0,0),(2,2,'test_paragraphs','und','tempus quam pellentesque nec',1,1,1588735498,1588735498,2,0,0,0,0),(3,3,'test_paragraphs','und','Faucibus a pellentesque sit',1,1,1588735540,1588735540,2,0,0,0,0),(4,4,'page','und','Test Basic Page',1,1,1588735638,1588735638,1,0,0,0,0),(5,5,'page','und','pharetra pharetra',1,1,1588735653,1588735653,1,0,0,0,0),(6,6,'page','und','dictum at tempor commodo',1,1,1588735676,1588735676,1,0,0,0,0),(7,7,'should_have_been_page','und','First Should Have Been Page',1,1,1588737670,1588737806,2,1,0,0,0);
  1541. /*!40000 ALTER TABLE `node` ENABLE KEYS */;
  1542. UNLOCK TABLES;
  1543. --
  1544. -- Table structure for table `node_access`
  1545. --
  1546. DROP TABLE IF EXISTS `node_access`;
  1547. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1548. /*!40101 SET character_set_client = utf8 */;
  1549. CREATE TABLE `node_access` (
  1550. `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid this record affects.',
  1551. `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.',
  1552. `realm` varchar(255) NOT NULL DEFAULT '' COMMENT 'The realm in which the user must possess the grant ID. Each node access node can define one or more realms.',
  1553. `grant_view` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can view this node.',
  1554. `grant_update` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can edit this node.',
  1555. `grant_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can delete this node.',
  1556. PRIMARY KEY (`nid`,`gid`,`realm`)
  1557. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Identifies which realm/grant pairs a user must possess in...';
  1558. /*!40101 SET character_set_client = @saved_cs_client */;
  1559. --
  1560. -- Dumping data for table `node_access`
  1561. --
  1562. LOCK TABLES `node_access` WRITE;
  1563. /*!40000 ALTER TABLE `node_access` DISABLE KEYS */;
  1564. INSERT INTO `node_access` VALUES (0,0,'all',1,0,0);
  1565. /*!40000 ALTER TABLE `node_access` ENABLE KEYS */;
  1566. UNLOCK TABLES;
  1567. --
  1568. -- Table structure for table `node_comment_statistics`
  1569. --
  1570. DROP TABLE IF EXISTS `node_comment_statistics`;
  1571. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1572. /*!40101 SET character_set_client = utf8 */;
  1573. CREATE TABLE `node_comment_statistics` (
  1574. `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid for which the statistics are compiled.',
  1575. `cid` int(11) NOT NULL DEFAULT '0' COMMENT 'The comment.cid of the last comment.',
  1576. `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.',
  1577. `last_comment_name` varchar(60) DEFAULT NULL COMMENT 'The name of the latest author to post a comment on this node, from comment.name.',
  1578. `last_comment_uid` int(11) NOT NULL DEFAULT '0' COMMENT 'The user ID of the latest author to post a comment on this node, from comment.uid.',
  1579. `comment_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The total number of comments on this node.',
  1580. PRIMARY KEY (`nid`),
  1581. KEY `node_comment_timestamp` (`last_comment_timestamp`),
  1582. KEY `comment_count` (`comment_count`),
  1583. KEY `last_comment_uid` (`last_comment_uid`)
  1584. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Maintains statistics of node and comments posts to show ...';
  1585. /*!40101 SET character_set_client = @saved_cs_client */;
  1586. --
  1587. -- Dumping data for table `node_comment_statistics`
  1588. --
  1589. LOCK TABLES `node_comment_statistics` WRITE;
  1590. /*!40000 ALTER TABLE `node_comment_statistics` DISABLE KEYS */;
  1591. INSERT INTO `node_comment_statistics` VALUES (1,0,1588735441,NULL,1,0),(2,0,1588735498,NULL,1,0),(3,0,1588735540,NULL,1,0),(4,0,1588735638,NULL,1,0),(5,0,1588735653,NULL,1,0),(6,0,1588735676,NULL,1,0),(7,0,1588737670,NULL,1,0);
  1592. /*!40000 ALTER TABLE `node_comment_statistics` ENABLE KEYS */;
  1593. UNLOCK TABLES;
  1594. --
  1595. -- Table structure for table `node_revision`
  1596. --
  1597. DROP TABLE IF EXISTS `node_revision`;
  1598. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1599. /*!40101 SET character_set_client = utf8 */;
  1600. CREATE TABLE `node_revision` (
  1601. `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node this version belongs to.',
  1602. `vid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for this version.',
  1603. `uid` int(11) NOT NULL DEFAULT '0' COMMENT 'The users.uid that created this version.',
  1604. `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The title of this version.',
  1605. `log` longtext NOT NULL COMMENT 'The log entry explaining the changes in this version.',
  1606. `timestamp` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when this version was created.',
  1607. `status` int(11) NOT NULL DEFAULT '1' COMMENT 'Boolean indicating whether the node (at the time of this revision) is published (visible to non-administrators).',
  1608. `comment` int(11) NOT NULL DEFAULT '0' COMMENT 'Whether comments are allowed on this node (at the time of this revision): 0 = no, 1 = closed (read only), 2 = open (read/write).',
  1609. `promote` int(11) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether the node (at the time of this revision) should be displayed on the front page.',
  1610. `sticky` int(11) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether the node (at the time of this revision) should be displayed at the top of lists in which it appears.',
  1611. PRIMARY KEY (`vid`),
  1612. KEY `nid` (`nid`),
  1613. KEY `uid` (`uid`)
  1614. ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores information about each saved version of a node.';
  1615. /*!40101 SET character_set_client = @saved_cs_client */;
  1616. --
  1617. -- Dumping data for table `node_revision`
  1618. --
  1619. LOCK TABLES `node_revision` WRITE;
  1620. /*!40000 ALTER TABLE `node_revision` DISABLE KEYS */;
  1621. INSERT INTO `node_revision` VALUES (1,1,1,'sit amet purus gravida quis','',1588735441,1,2,0,0),(2,2,1,'tempus quam pellentesque nec','',1588735498,1,2,0,0),(3,3,1,'Faucibus a pellentesque sit','',1588735540,1,2,0,0),(4,4,1,'Test Basic Page','',1588735638,1,1,0,0),(5,5,1,'pharetra pharetra','',1588735653,1,1,0,0),(6,6,1,'dictum at tempor commodo','',1588735676,1,1,0,0),(7,7,1,'First Should Have Been Page','',1588737806,1,2,1,0);
  1622. /*!40000 ALTER TABLE `node_revision` ENABLE KEYS */;
  1623. UNLOCK TABLES;
  1624. --
  1625. -- Table structure for table `node_type`
  1626. --
  1627. DROP TABLE IF EXISTS `node_type`;
  1628. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1629. /*!40101 SET character_set_client = utf8 */;
  1630. CREATE TABLE `node_type` (
  1631. `type` varchar(32) NOT NULL COMMENT 'The machine-readable name of this type.',
  1632. `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The human-readable name of this type.',
  1633. `base` varchar(255) NOT NULL COMMENT 'The base string used to construct callbacks corresponding to this node type.',
  1634. `module` varchar(255) NOT NULL COMMENT 'The module defining this node type.',
  1635. `description` mediumtext NOT NULL COMMENT 'A brief description of this type.',
  1636. `help` mediumtext NOT NULL COMMENT 'Help information shown to the user when creating a node of this type.',
  1637. `has_title` tinyint(3) unsigned NOT NULL COMMENT 'Boolean indicating whether this type uses the node.title field.',
  1638. `title_label` varchar(255) NOT NULL DEFAULT '' COMMENT 'The label displayed for the title field on the edit form.',
  1639. `custom` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this type is defined by a module (FALSE) or by a user via Add content type (TRUE).',
  1640. `modified` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this type has been modified by an administrator; currently not used in any way.',
  1641. `locked` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether the administrator can change the machine name of this type.',
  1642. `disabled` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether the node type is disabled.',
  1643. `orig_type` varchar(255) NOT NULL DEFAULT '' COMMENT 'The original machine-readable name of this node type. This may be different from the current type name if the locked field is 0.',
  1644. PRIMARY KEY (`type`)
  1645. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores information about all defined node types.';
  1646. /*!40101 SET character_set_client = @saved_cs_client */;
  1647. --
  1648. -- Dumping data for table `node_type`
  1649. --
  1650. LOCK TABLES `node_type` WRITE;
  1651. /*!40000 ALTER TABLE `node_type` DISABLE KEYS */;
  1652. INSERT INTO `node_type` VALUES ('article','Article','node_content','node','Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.','',1,'Title',1,1,0,0,'article'),('page','Basic page','node_content','node','Use <em>basic pages</em> for your static content, such as an \'About us\' page.','',1,'Title',1,1,0,0,'page'),('should_have_been_page','Should Have Been Page','node_content','node','','',1,'Title',1,1,0,0,'should_have_been_page'),('test_paragraphs','Test Paragraphs','node_content','node','','',1,'Title',1,1,0,0,'test_paragraphs');
  1653. /*!40000 ALTER TABLE `node_type` ENABLE KEYS */;
  1654. UNLOCK TABLES;
  1655. --
  1656. -- Table structure for table `queue`
  1657. --
  1658. DROP TABLE IF EXISTS `queue`;
  1659. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1660. /*!40101 SET character_set_client = utf8 */;
  1661. CREATE TABLE `queue` (
  1662. `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique item ID.',
  1663. `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The queue name.',
  1664. `data` longblob COMMENT 'The arbitrary data for the item.',
  1665. `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp when the claim lease expires on the item.',
  1666. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp when the item was created.',
  1667. PRIMARY KEY (`item_id`),
  1668. KEY `name_created` (`name`,`created`),
  1669. KEY `expire` (`expire`)
  1670. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores items in queues.';
  1671. /*!40101 SET character_set_client = @saved_cs_client */;
  1672. --
  1673. -- Dumping data for table `queue`
  1674. --
  1675. LOCK TABLES `queue` WRITE;
  1676. /*!40000 ALTER TABLE `queue` DISABLE KEYS */;
  1677. /*!40000 ALTER TABLE `queue` ENABLE KEYS */;
  1678. UNLOCK TABLES;
  1679. --
  1680. -- Table structure for table `rdf_mapping`
  1681. --
  1682. DROP TABLE IF EXISTS `rdf_mapping`;
  1683. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1684. /*!40101 SET character_set_client = utf8 */;
  1685. CREATE TABLE `rdf_mapping` (
  1686. `type` varchar(128) NOT NULL COMMENT 'The name of the entity type a mapping applies to (node, user, comment, etc.).',
  1687. `bundle` varchar(128) NOT NULL COMMENT 'The name of the bundle a mapping applies to.',
  1688. `mapping` longblob COMMENT 'The serialized mapping of the bundle type and fields to RDF terms.',
  1689. PRIMARY KEY (`type`,`bundle`)
  1690. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores custom RDF mappings for user defined content types...';
  1691. /*!40101 SET character_set_client = @saved_cs_client */;
  1692. --
  1693. -- Dumping data for table `rdf_mapping`
  1694. --
  1695. LOCK TABLES `rdf_mapping` WRITE;
  1696. /*!40000 ALTER TABLE `rdf_mapping` DISABLE KEYS */;
  1697. INSERT INTO `rdf_mapping` VALUES ('node','article','a:11:{s:11:\"field_image\";a:2:{s:10:\"predicates\";a:2:{i:0;s:8:\"og:image\";i:1;s:12:\"rdfs:seeAlso\";}s:4:\"type\";s:3:\"rel\";}s:10:\"field_tags\";a:2:{s:10:\"predicates\";a:1:{i:0;s:10:\"dc:subject\";}s:4:\"type\";s:3:\"rel\";}s:7:\"rdftype\";a:2:{i:0;s:9:\"sioc:Item\";i:1;s:13:\"foaf:Document\";}s:5:\"title\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:7:\"created\";a:3:{s:10:\"predicates\";a:2:{i:0;s:7:\"dc:date\";i:1;s:10:\"dc:created\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:7:\"changed\";a:3:{s:10:\"predicates\";a:1:{i:0;s:11:\"dc:modified\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:4:\"body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"uid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:has_creator\";}s:4:\"type\";s:3:\"rel\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:13:\"comment_count\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:num_replies\";}s:8:\"datatype\";s:11:\"xsd:integer\";}s:13:\"last_activity\";a:3:{s:10:\"predicates\";a:1:{i:0;s:23:\"sioc:last_activity_date\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}}'),('node','page','a:9:{s:7:\"rdftype\";a:1:{i:0;s:13:\"foaf:Document\";}s:5:\"title\";a:1:{s:10:\"predicates\";a:1:{i:0;s:8:\"dc:title\";}}s:7:\"created\";a:3:{s:10:\"predicates\";a:2:{i:0;s:7:\"dc:date\";i:1;s:10:\"dc:created\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:7:\"changed\";a:3:{s:10:\"predicates\";a:1:{i:0;s:11:\"dc:modified\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}s:4:\"body\";a:1:{s:10:\"predicates\";a:1:{i:0;s:15:\"content:encoded\";}}s:3:\"uid\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:has_creator\";}s:4:\"type\";s:3:\"rel\";}s:4:\"name\";a:1:{s:10:\"predicates\";a:1:{i:0;s:9:\"foaf:name\";}}s:13:\"comment_count\";a:2:{s:10:\"predicates\";a:1:{i:0;s:16:\"sioc:num_replies\";}s:8:\"datatype\";s:11:\"xsd:integer\";}s:13:\"last_activity\";a:3:{s:10:\"predicates\";a:1:{i:0;s:23:\"sioc:last_activity_date\";}s:8:\"datatype\";s:12:\"xsd:dateTime\";s:8:\"callback\";s:12:\"date_iso8601\";}}');
  1698. /*!40000 ALTER TABLE `rdf_mapping` ENABLE KEYS */;
  1699. UNLOCK TABLES;
  1700. --
  1701. -- Table structure for table `registry`
  1702. --
  1703. DROP TABLE IF EXISTS `registry`;
  1704. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1705. /*!40101 SET character_set_client = utf8 */;
  1706. CREATE TABLE `registry` (
  1707. `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the function, class, or interface.',
  1708. `type` varchar(9) NOT NULL DEFAULT '' COMMENT 'Either function or class or interface.',
  1709. `filename` varchar(255) NOT NULL COMMENT 'Name of the file.',
  1710. `module` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the module the file belongs to.',
  1711. `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'The order in which this module’s hooks should be invoked relative to other modules. Equal-weighted modules are ordered by name.',
  1712. PRIMARY KEY (`name`,`type`),
  1713. KEY `hook` (`type`,`weight`,`module`)
  1714. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Each record is a function, class, or interface name and...';
  1715. /*!40101 SET character_set_client = @saved_cs_client */;
  1716. --
  1717. -- Dumping data for table `registry`
  1718. --
  1719. LOCK TABLES `registry` WRITE;
  1720. /*!40000 ALTER TABLE `registry` DISABLE KEYS */;
  1721. INSERT INTO `registry` VALUES ('AccessDeniedTestCase','class','modules/system/system.test','system',0),('AdminMetaTagTestCase','class','modules/system/system.test','system',0),('ArchiverInterface','interface','includes/archiver.inc','',0),('ArchiverTar','class','modules/system/system.archiver.inc','system',0),('ArchiverZip','class','modules/system/system.archiver.inc','system',0),('Archive_Tar','class','modules/system/system.tar.inc','system',0),('BatchMemoryQueue','class','includes/batch.queue.inc','',0),('BatchQueue','class','includes/batch.queue.inc','',0),('BlockAdminThemeTestCase','class','modules/block/block.test','block',0),('BlockCacheTestCase','class','modules/block/block.test','block',0),('BlockHashTestCase','class','modules/block/block.test','block',0),('BlockHiddenRegionTestCase','class','modules/block/block.test','block',0),('BlockHTMLIdTestCase','class','modules/block/block.test','block',0),('BlockInvalidRegionTestCase','class','modules/block/block.test','block',0),('BlockTemplateSuggestionsUnitTest','class','modules/block/block.test','block',0),('BlockTestCase','class','modules/block/block.test','block',0),('BlockViewModuleDeltaAlterWebTest','class','modules/block/block.test','block',0),('ColorTestCase','class','modules/color/color.test','color',0),('CommentActionsTestCase','class','modules/comment/comment.test','comment',0),('CommentAnonymous','class','modules/comment/comment.test','comment',0),('CommentApprovalTest','class','modules/comment/comment.test','comment',0),('CommentBlockFunctionalTest','class','modules/comment/comment.test','comment',0),('CommentContentRebuild','class','modules/comment/comment.test','comment',0),('CommentController','class','modules/comment/comment.module','comment',0),('CommentFieldsTest','class','modules/comment/comment.test','comment',0),('CommentHelperCase','class','modules/comment/comment.test','comment',0),('CommentInterfaceTest','class','modules/comment/comment.test','comment',0),('CommentNodeAccessTest','class','modules/comment/comment.test','comment',0),('CommentNodeChangesTestCase','class','modules/comment/comment.test','comment',0),('CommentPagerTest','class','modules/comment/comment.test','comment',0),('CommentPreviewTest','class','modules/comment/comment.test','comment',0),('CommentRSSUnitTest','class','modules/comment/comment.test','comment',0),('CommentThreadingTestCase','class','modules/comment/comment.test','comment',0),('CommentTokenReplaceTestCase','class','modules/comment/comment.test','comment',0),('ConfirmFormTest','class','modules/system/system.test','system',0),('ContextualDynamicContextTestCase','class','modules/contextual/contextual.test','contextual',0),('CronQueueTestCase','class','modules/system/system.test','system',0),('CronRunTestCase','class','modules/system/system.test','system',0),('DashboardBlocksTestCase','class','modules/dashboard/dashboard.test','dashboard',0),('Database','class','includes/database/database.inc','',0),('DatabaseCondition','class','includes/database/query.inc','',0),('DatabaseConnection','class','includes/database/database.inc','',0),('DatabaseConnectionNotDefinedException','class','includes/database/database.inc','',0),('DatabaseConnection_mysql','class','includes/database/mysql/database.inc','',0),('DatabaseConnection_pgsql','class','includes/database/pgsql/database.inc','',0),('DatabaseConnection_sqlite','class','includes/database/sqlite/database.inc','',0),('DatabaseDriverNotSpecifiedException','class','includes/database/database.inc','',0),('DatabaseLog','class','includes/database/log.inc','',0),('DatabaseSchema','class','includes/database/schema.inc','',0),('DatabaseSchemaObjectDoesNotExistException','class','includes/database/schema.inc','',0),('DatabaseSchemaObjectExistsException','class','includes/database/schema.inc','',0),('DatabaseSchema_mysql','class','includes/database/mysql/schema.inc','',0),('DatabaseSchema_pgsql','class','includes/database/pgsql/schema.inc','',0),('DatabaseSchema_sqlite','class','includes/database/sqlite/schema.inc','',0),('DatabaseStatementBase','class','includes/database/database.inc','
  1722. /*!40000 ALTER TABLE `registry` ENABLE KEYS */;
  1723. UNLOCK TABLES;
  1724. --
  1725. -- Table structure for table `registry_file`
  1726. --
  1727. DROP TABLE IF EXISTS `registry_file`;
  1728. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1729. /*!40101 SET character_set_client = utf8 */;
  1730. CREATE TABLE `registry_file` (
  1731. `filename` varchar(255) NOT NULL COMMENT 'Path to the file.',
  1732. `hash` varchar(64) NOT NULL COMMENT 'sha-256 hash of the file’s contents when last parsed.',
  1733. PRIMARY KEY (`filename`)
  1734. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Files parsed to build the registry.';
  1735. /*!40101 SET character_set_client = @saved_cs_client */;
  1736. --
  1737. -- Dumping data for table `registry_file`
  1738. --
  1739. LOCK TABLES `registry_file` WRITE;
  1740. /*!40000 ALTER TABLE `registry_file` DISABLE KEYS */;
  1741. INSERT INTO `registry_file` VALUES ('includes/actions.inc','f36b066681463c7dfe189e0430cb1a89bf66f7e228cbb53cdfcd93987193f759'),('includes/ajax.inc','8d5ebead219c48d5929ee6a5a178a331471ee6ceb38653094514c952457eaebd'),('includes/archiver.inc','bdbb21b712a62f6b913590b609fd17cd9f3c3b77c0d21f68e71a78427ed2e3e9'),('includes/authorize.inc','6d64d8c21aa01eb12fc29918732e4df6b871ed06e5d41373cb95c197ed661d13'),('includes/batch.inc','1fe00f9a25481cd43e19fbd6bd37b7ff9dca79f8405ec3e55ffb011be12ec2c3'),('includes/batch.queue.inc','554b2e92e1dad0f7fd5a19cb8dff7e109f10fbe2441a5692d076338ec908de0f'),('includes/bootstrap.inc','7ca6ada1fadfa49ecd16141fa8c049276a3d0d59af526f887df9a0d1d6d23a6c'),('includes/cache-install.inc','e7ed123c5805703c84ad2cce9c1ca46b3ce8caeeea0d8ef39a3024a4ab95fa0e'),('includes/cache.inc','033c9bf2555dba29382b077f78cc00c82fd7f42a959ba31b710adddf6fdf24fe'),('includes/common.inc','002ba9cba11a297685bb04995299d8af5ac85b66a777f76e0993892ae517118f'),('includes/database/database.inc','2ef46543fb9cf61ed9fa9aed4e44dd31630c22604ea6b8e48b57ebd7ad11a111'),('includes/database/log.inc','9feb5a17ae2fabcf26a96d2a634ba73da501f7bcfc3599a693d916a6971d00d1'),('includes/database/mysql/database.inc','32a577354dba6030043500873f8a2a7359c80c179a213284b026c1a9b0452b70'),('includes/database/mysql/install.inc','6ae316941f771732fbbabed7e1d6b4cbb41b1f429dd097d04b3345aa15e461a0'),('includes/database/mysql/query.inc','0212a871646c223bf77aa26b945c77a8974855373967b5fb9fdc09f8a1de88a6'),('includes/database/mysql/schema.inc','2ef729f8d6466d5cd87ba233152d88590bce629d8366040b2509b4e24258d780'),('includes/database/pgsql/database.inc','651bec324e2204aa35a28fdbd876aa8e4f7a9e909e75cc8db811e9c156b0df88'),('includes/database/pgsql/install.inc','39587f26a9e054afaab2064d996af910f1b201ef1c6b82938ef130e4ff8c6aab'),('includes/database/pgsql/query.inc','0df57377686c921e722a10b49d5e433b131176c8059a4ace4680964206fc14b4'),('includes/database/pgsql/schema.inc','1588daadfa53506aa1f5d94572162a45a46dc3ceabdd0e2f224532ded6508403'),('includes/database/pgsql/select.inc','1e509bc97c58223750e8ea735145b316827e36f43c07b946003e41f5bca23659'),('includes/database/prefetch.inc','b5b207a66a69ecb52ee4f4459af16a7b5eabedc87254245f37cc33bebb61c0fb'),('includes/database/query.inc','982d44a294eea1c9619687c14df2987257e3776fcabeba05f01432e934cf61c6'),('includes/database/schema.inc','6ea8e4063eb72d8f6b1a9f8b8908489d9f89b4a158ef37002d21209fb500358c'),('includes/database/select.inc','02a2d4345287df62b163ca2524e99b7370c9ec167bc937245328683d4e3e3d56'),('includes/database/sqlite/database.inc','62f6669c4610557c4b34ada9f0a0f61d6cb7b377e0a9032d2efca7b5f39b0965'),('includes/database/sqlite/install.inc','6620f354aa175a116ba3a0562c980d86cc3b8b481042fc3cc5ed6a4d1a7a6d74'),('includes/database/sqlite/query.inc','0eb02ad036ef61c490fb3f189a4cdc8fc1ae0d442737806346fd63aea8f30db3'),('includes/database/sqlite/schema.inc','3a7d22ec1f0ee09bfa267309b90e30edbe39e453b3025b30cbe3ae7412a4df2d'),('includes/database/sqlite/select.inc','8d1c426dbd337733c206cce9f59a172546c6ed856d8ef3f1c7bef05a16f7bf68'),('includes/date.inc','1de2c25e3b67a9919fc6c8061594442b6fb2cdd3a48ddf1591ee3aa98484b737'),('includes/entity.inc','f06b508f93e72ba70f979d8391be57662c018a03a32fac0a6d3baa752740133d'),('includes/errors.inc','d731bbe3a60508e164cfa90b8edc06400c7f15844f9f9bc3935dd87e44c460db'),('includes/file.inc','fb41a8c8875ff453f9b22499ae33c87ff85fad93958d324c07d382c7465bb8b5'),('includes/file.mimetypes.inc','33266e837f4ce076378e7e8cef6c5af46446226ca4259f83e13f605856a7f147'),('includes/file.phar.inc','544df23f736ce49f458033d6515a301a8ca1c7a7d1bfd3f388caef910534abb3'),('includes/filetransfer/filetransfer.inc','fdea8ae48345ec91885ac48a9bc53daf87616271472bb7c29b7e3ce219b22034'),('includes/filetransfer/ftp.inc','51eb119b8e1221d598ffa6cc46c8a322aa77b49a3d8879f7fb38b7221cf7e06d'),('includes/filetransfer/local.inc','7cbfdb46abbdf539640db27e66fb30e5265128f31002bd0dfc3af16ae01a9492'),('includes/filetransfer/ssh.inc','92f1232158cb32ab04cbc93ae38ad3af04796e18f66910a9bc5ca8e437f06891'),('includes/form.inc','54f3c2072206f75b6270606fff8c7bcfb99bfdcc46ab17a1
  1742. /*!40000 ALTER TABLE `registry_file` ENABLE KEYS */;
  1743. UNLOCK TABLES;
  1744. --
  1745. -- Table structure for table `role`
  1746. --
  1747. DROP TABLE IF EXISTS `role`;
  1748. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1749. /*!40101 SET character_set_client = utf8 */;
  1750. CREATE TABLE `role` (
  1751. `rid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique role ID.',
  1752. `name` varchar(64) NOT NULL DEFAULT '' COMMENT 'Unique role name.',
  1753. `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'The weight of this role in listings and the user interface.',
  1754. PRIMARY KEY (`rid`),
  1755. UNIQUE KEY `name` (`name`),
  1756. KEY `name_weight` (`name`,`weight`)
  1757. ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores user roles.';
  1758. /*!40101 SET character_set_client = @saved_cs_client */;
  1759. --
  1760. -- Dumping data for table `role`
  1761. --
  1762. LOCK TABLES `role` WRITE;
  1763. /*!40000 ALTER TABLE `role` DISABLE KEYS */;
  1764. INSERT INTO `role` VALUES (3,'administrator',2),(1,'anonymous user',0),(2,'authenticated user',1);
  1765. /*!40000 ALTER TABLE `role` ENABLE KEYS */;
  1766. UNLOCK TABLES;
  1767. --
  1768. -- Table structure for table `role_permission`
  1769. --
  1770. DROP TABLE IF EXISTS `role_permission`;
  1771. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1772. /*!40101 SET character_set_client = utf8 */;
  1773. CREATE TABLE `role_permission` (
  1774. `rid` int(10) unsigned NOT NULL COMMENT 'Foreign Key: role.rid.',
  1775. `permission` varchar(128) NOT NULL DEFAULT '' COMMENT 'A single permission granted to the role identified by rid.',
  1776. `module` varchar(255) NOT NULL DEFAULT '' COMMENT 'The module declaring the permission.',
  1777. PRIMARY KEY (`rid`,`permission`),
  1778. KEY `permission` (`permission`)
  1779. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores the permissions assigned to user roles.';
  1780. /*!40101 SET character_set_client = @saved_cs_client */;
  1781. --
  1782. -- Dumping data for table `role_permission`
  1783. --
  1784. LOCK TABLES `role_permission` WRITE;
  1785. /*!40000 ALTER TABLE `role_permission` DISABLE KEYS */;
  1786. INSERT INTO `role_permission` VALUES (1,'access comments','comment'),(1,'access content','node'),(1,'use text format filtered_html','filter'),(2,'access comments','comment'),(2,'access content','node'),(2,'post comments','comment'),(2,'skip comment approval','comment'),(2,'use text format filtered_html','filter'),(3,'access administration pages','system'),(3,'access comments','comment'),(3,'access content','node'),(3,'access content overview','node'),(3,'access contextual links','contextual'),(3,'access dashboard','dashboard'),(3,'access overlay','overlay'),(3,'access site in maintenance mode','system'),(3,'access site reports','system'),(3,'access toolbar','toolbar'),(3,'access user profiles','user'),(3,'administer actions','system'),(3,'administer blocks','block'),(3,'administer comments','comment'),(3,'administer content types','node'),(3,'administer field collections','field_collection'),(3,'administer fields','field'),(3,'administer filters','filter'),(3,'administer image styles','image'),(3,'administer menu','menu'),(3,'administer modules','system'),(3,'administer nodes','node'),(3,'administer permissions','user'),(3,'administer search','search'),(3,'administer shortcuts','shortcut'),(3,'administer site configuration','system'),(3,'administer software updates','system'),(3,'administer taxonomy','taxonomy'),(3,'administer themes','system'),(3,'administer url aliases','path'),(3,'administer users','user'),(3,'block IP addresses','system'),(3,'bypass node access','node'),(3,'cancel account','user'),(3,'change own username','user'),(3,'create article content','node'),(3,'create page content','node'),(3,'create url aliases','path'),(3,'customize shortcut links','shortcut'),(3,'delete any article content','node'),(3,'delete any page content','node'),(3,'delete own article content','node'),(3,'delete own page content','node'),(3,'delete revisions','node'),(3,'delete terms in 1','taxonomy'),(3,'edit any article content','node'),(3,'edit any page content','node'),(3,'edit field collections','field_collection'),(3,'edit own article content','node'),(3,'edit own comments','comment'),(3,'edit own page content','node'),(3,'edit terms in 1','taxonomy'),(3,'post comments','comment'),(3,'revert revisions','node'),(3,'search content','search'),(3,'select account cancellation method','user'),(3,'skip comment approval','comment'),(3,'switch shortcut sets','shortcut'),(3,'use advanced search','search'),(3,'use text format filtered_html','filter'),(3,'use text format full_html','filter'),(3,'view own unpublished content','node'),(3,'view revisions','node'),(3,'view the administration theme','system');
  1787. /*!40000 ALTER TABLE `role_permission` ENABLE KEYS */;
  1788. UNLOCK TABLES;
  1789. --
  1790. -- Table structure for table `search_dataset`
  1791. --
  1792. DROP TABLE IF EXISTS `search_dataset`;
  1793. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1794. /*!40101 SET character_set_client = utf8 */;
  1795. CREATE TABLE `search_dataset` (
  1796. `sid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Search item ID, e.g. node ID for nodes.',
  1797. `type` varchar(16) NOT NULL COMMENT 'Type of item, e.g. node.',
  1798. `data` longtext NOT NULL COMMENT 'List of space-separated words from the item.',
  1799. `reindex` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Set to force node reindexing.',
  1800. PRIMARY KEY (`sid`,`type`)
  1801. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores items that will be searched.';
  1802. /*!40101 SET character_set_client = @saved_cs_client */;
  1803. --
  1804. -- Dumping data for table `search_dataset`
  1805. --
  1806. LOCK TABLES `search_dataset` WRITE;
  1807. /*!40000 ALTER TABLE `search_dataset` DISABLE KEYS */;
  1808. /*!40000 ALTER TABLE `search_dataset` ENABLE KEYS */;
  1809. UNLOCK TABLES;
  1810. --
  1811. -- Table structure for table `search_index`
  1812. --
  1813. DROP TABLE IF EXISTS `search_index`;
  1814. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1815. /*!40101 SET character_set_client = utf8 */;
  1816. CREATE TABLE `search_index` (
  1817. `word` varchar(50) NOT NULL DEFAULT '' COMMENT 'The search_total.word that is associated with the search item.',
  1818. `sid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The search_dataset.sid of the searchable item to which the word belongs.',
  1819. `type` varchar(16) NOT NULL COMMENT 'The search_dataset.type of the searchable item to which the word belongs.',
  1820. `score` float DEFAULT NULL COMMENT 'The numeric score of the word, higher being more important.',
  1821. PRIMARY KEY (`word`,`sid`,`type`),
  1822. KEY `sid_type` (`sid`,`type`)
  1823. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores the search index, associating words, items and...';
  1824. /*!40101 SET character_set_client = @saved_cs_client */;
  1825. --
  1826. -- Dumping data for table `search_index`
  1827. --
  1828. LOCK TABLES `search_index` WRITE;
  1829. /*!40000 ALTER TABLE `search_index` DISABLE KEYS */;
  1830. /*!40000 ALTER TABLE `search_index` ENABLE KEYS */;
  1831. UNLOCK TABLES;
  1832. --
  1833. -- Table structure for table `search_node_links`
  1834. --
  1835. DROP TABLE IF EXISTS `search_node_links`;
  1836. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1837. /*!40101 SET character_set_client = utf8 */;
  1838. CREATE TABLE `search_node_links` (
  1839. `sid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The search_dataset.sid of the searchable item containing the link to the node.',
  1840. `type` varchar(16) NOT NULL DEFAULT '' COMMENT 'The search_dataset.type of the searchable item containing the link to the node.',
  1841. `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid that this item links to.',
  1842. `caption` longtext COMMENT 'The text used to link to the node.nid.',
  1843. PRIMARY KEY (`sid`,`type`,`nid`),
  1844. KEY `nid` (`nid`)
  1845. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores items (like nodes) that link to other nodes, used...';
  1846. /*!40101 SET character_set_client = @saved_cs_client */;
  1847. --
  1848. -- Dumping data for table `search_node_links`
  1849. --
  1850. LOCK TABLES `search_node_links` WRITE;
  1851. /*!40000 ALTER TABLE `search_node_links` DISABLE KEYS */;
  1852. /*!40000 ALTER TABLE `search_node_links` ENABLE KEYS */;
  1853. UNLOCK TABLES;
  1854. --
  1855. -- Table structure for table `search_total`
  1856. --
  1857. DROP TABLE IF EXISTS `search_total`;
  1858. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1859. /*!40101 SET character_set_client = utf8 */;
  1860. CREATE TABLE `search_total` (
  1861. `word` varchar(50) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique word in the search index.',
  1862. `count` float DEFAULT NULL COMMENT 'The count of the word in the index using Zipf’s law to equalize the probability distribution.',
  1863. PRIMARY KEY (`word`)
  1864. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores search totals for words.';
  1865. /*!40101 SET character_set_client = @saved_cs_client */;
  1866. --
  1867. -- Dumping data for table `search_total`
  1868. --
  1869. LOCK TABLES `search_total` WRITE;
  1870. /*!40000 ALTER TABLE `search_total` DISABLE KEYS */;
  1871. /*!40000 ALTER TABLE `search_total` ENABLE KEYS */;
  1872. UNLOCK TABLES;
  1873. --
  1874. -- Table structure for table `semaphore`
  1875. --
  1876. DROP TABLE IF EXISTS `semaphore`;
  1877. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1878. /*!40101 SET character_set_client = utf8 */;
  1879. CREATE TABLE `semaphore` (
  1880. `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique name.',
  1881. `value` varchar(255) NOT NULL DEFAULT '' COMMENT 'A value for the semaphore.',
  1882. `expire` double NOT NULL COMMENT 'A Unix timestamp with microseconds indicating when the semaphore should expire.',
  1883. PRIMARY KEY (`name`),
  1884. KEY `value` (`value`),
  1885. KEY `expire` (`expire`)
  1886. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Table for holding semaphores, locks, flags, etc. that...';
  1887. /*!40101 SET character_set_client = @saved_cs_client */;
  1888. --
  1889. -- Dumping data for table `semaphore`
  1890. --
  1891. LOCK TABLES `semaphore` WRITE;
  1892. /*!40000 ALTER TABLE `semaphore` DISABLE KEYS */;
  1893. /*!40000 ALTER TABLE `semaphore` ENABLE KEYS */;
  1894. UNLOCK TABLES;
  1895. --
  1896. -- Table structure for table `sequences`
  1897. --
  1898. DROP TABLE IF EXISTS `sequences`;
  1899. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1900. /*!40101 SET character_set_client = utf8 */;
  1901. CREATE TABLE `sequences` (
  1902. `value` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The value of the sequence.',
  1903. PRIMARY KEY (`value`)
  1904. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores IDs.';
  1905. /*!40101 SET character_set_client = @saved_cs_client */;
  1906. --
  1907. -- Dumping data for table `sequences`
  1908. --
  1909. LOCK TABLES `sequences` WRITE;
  1910. /*!40000 ALTER TABLE `sequences` DISABLE KEYS */;
  1911. INSERT INTO `sequences` VALUES (1);
  1912. /*!40000 ALTER TABLE `sequences` ENABLE KEYS */;
  1913. UNLOCK TABLES;
  1914. --
  1915. -- Table structure for table `sessions`
  1916. --
  1917. DROP TABLE IF EXISTS `sessions`;
  1918. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1919. /*!40101 SET character_set_client = utf8 */;
  1920. CREATE TABLE `sessions` (
  1921. `uid` int(10) unsigned NOT NULL COMMENT 'The users.uid corresponding to a session, or 0 for anonymous user.',
  1922. `sid` varchar(128) NOT NULL COMMENT 'A session ID. The value is generated by Drupal’s session handlers.',
  1923. `ssid` varchar(128) NOT NULL DEFAULT '' COMMENT 'Secure session ID. The value is generated by Drupal’s session handlers.',
  1924. `hostname` varchar(128) NOT NULL DEFAULT '' COMMENT 'The IP address that last used this session ID (sid).',
  1925. `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.',
  1926. `cache` int(11) NOT NULL DEFAULT '0' COMMENT 'The time of this user’s last post. This is used when the site has specified a minimum_cache_lifetime. See cache_get().',
  1927. `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.',
  1928. PRIMARY KEY (`sid`,`ssid`),
  1929. KEY `timestamp` (`timestamp`),
  1930. KEY `uid` (`uid`),
  1931. KEY `ssid` (`ssid`)
  1932. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Drupal’s session handlers read and write into the...';
  1933. /*!40101 SET character_set_client = @saved_cs_client */;
  1934. --
  1935. -- Dumping data for table `sessions`
  1936. --
  1937. LOCK TABLES `sessions` WRITE;
  1938. /*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
  1939. INSERT INTO `sessions` VALUES (1,'VrOJK78GRzUXgJ5jXbJ9ZA8lcKXQIy4JQjsxHix0VW0','','192.168.64.1',1588737806,0,'');
  1940. /*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
  1941. UNLOCK TABLES;
  1942. --
  1943. -- Table structure for table `shortcut_set`
  1944. --
  1945. DROP TABLE IF EXISTS `shortcut_set`;
  1946. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1947. /*!40101 SET character_set_client = utf8 */;
  1948. CREATE TABLE `shortcut_set` (
  1949. `set_name` varchar(32) NOT NULL DEFAULT '' COMMENT 'Primary Key: The menu_links.menu_name under which the set’s links are stored.',
  1950. `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The title of the set.',
  1951. PRIMARY KEY (`set_name`)
  1952. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores information about sets of shortcuts links.';
  1953. /*!40101 SET character_set_client = @saved_cs_client */;
  1954. --
  1955. -- Dumping data for table `shortcut_set`
  1956. --
  1957. LOCK TABLES `shortcut_set` WRITE;
  1958. /*!40000 ALTER TABLE `shortcut_set` DISABLE KEYS */;
  1959. INSERT INTO `shortcut_set` VALUES ('shortcut-set-1','Default');
  1960. /*!40000 ALTER TABLE `shortcut_set` ENABLE KEYS */;
  1961. UNLOCK TABLES;
  1962. --
  1963. -- Table structure for table `shortcut_set_users`
  1964. --
  1965. DROP TABLE IF EXISTS `shortcut_set_users`;
  1966. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1967. /*!40101 SET character_set_client = utf8 */;
  1968. CREATE TABLE `shortcut_set_users` (
  1969. `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid for this set.',
  1970. `set_name` varchar(32) NOT NULL DEFAULT '' COMMENT 'The shortcut_set.set_name that will be displayed for this user.',
  1971. PRIMARY KEY (`uid`),
  1972. KEY `set_name` (`set_name`)
  1973. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Maps users to shortcut sets.';
  1974. /*!40101 SET character_set_client = @saved_cs_client */;
  1975. --
  1976. -- Dumping data for table `shortcut_set_users`
  1977. --
  1978. LOCK TABLES `shortcut_set_users` WRITE;
  1979. /*!40000 ALTER TABLE `shortcut_set_users` DISABLE KEYS */;
  1980. /*!40000 ALTER TABLE `shortcut_set_users` ENABLE KEYS */;
  1981. UNLOCK TABLES;
  1982. --
  1983. -- Table structure for table `system`
  1984. --
  1985. DROP TABLE IF EXISTS `system`;
  1986. /*!40101 SET @saved_cs_client = @@character_set_client */;
  1987. /*!40101 SET character_set_client = utf8 */;
  1988. CREATE TABLE `system` (
  1989. `filename` varchar(255) NOT NULL DEFAULT '' COMMENT 'The path of the primary file for this item, relative to the Drupal root; e.g. modules/node/node.module.',
  1990. `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the item; e.g. node.',
  1991. `type` varchar(12) NOT NULL DEFAULT '' COMMENT 'The type of the item, either module, theme, or theme_engine.',
  1992. `owner` varchar(255) NOT NULL DEFAULT '' COMMENT 'A theme’s ’parent’ . Can be either a theme or an engine.',
  1993. `status` int(11) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether or not this item is enabled.',
  1994. `bootstrap` int(11) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether this module is loaded during Drupal’s early bootstrapping phase (e.g. even before the page cache is consulted).',
  1995. `schema_version` smallint(6) NOT NULL DEFAULT '-1' COMMENT 'The module’s database schema version number. -1 if the module is not installed (its tables do not exist); 0 or the largest N of the module’s hook_update_N() function that has either been run or existed when the module was first installed.',
  1996. `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'The order in which this module’s hooks should be invoked relative to other modules. Equal-weighted modules are ordered by name.',
  1997. `info` blob COMMENT 'A serialized array containing information from the module’s .info file; keys can include name, description, package, version, core, dependencies, and php.',
  1998. PRIMARY KEY (`filename`),
  1999. KEY `system_list` (`status`,`bootstrap`,`type`,`weight`,`name`),
  2000. KEY `type_name` (`type`,`name`)
  2001. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='A list of all modules, themes, and theme engines that are...';
  2002. /*!40101 SET character_set_client = @saved_cs_client */;
  2003. --
  2004. -- Dumping data for table `system`
  2005. --
  2006. LOCK TABLES `system` WRITE;
  2007. /*!40000 ALTER TABLE `system` DISABLE KEYS */;
  2008. INSERT INTO `system` VALUES ('modules/aggregator/aggregator.module','aggregator','module','',0,0,-1,0,'a:14:{s:4:\"name\";s:10:\"Aggregator\";s:11:\"description\";s:57:\"Aggregates syndicated content (RSS, RDF, and Atom feeds).\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.69\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:15:\"aggregator.test\";}s:9:\"configure\";s:41:\"admin/config/services/aggregator/settings\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:14:\"aggregator.css\";s:33:\"modules/aggregator/aggregator.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1576696221\";s:5:\"mtime\";i:1588734977;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/aggregator/tests/aggregator_test.module','aggregator_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:23:\"Aggregator module tests\";s:11:\"description\";s:46:\"Support module for aggregator related testing.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.69\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1576696221\";s:5:\"mtime\";i:1588734977;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/block/block.module','block','module','',1,0,7009,-5,'a:13:{s:4:\"name\";s:5:\"Block\";s:11:\"description\";s:140:\"Controls the visual building blocks a page is constructed with. Blocks are boxes of content rendered into an area, or region, of a web page.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.69\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"block.test\";}s:9:\"configure\";s:21:\"admin/structure/block\";s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1576696221\";s:5:\"mtime\";i:1588734977;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/block/tests/block_test.module','block_test','module','',0,0,-1,0,'a:13:{s:4:\"name\";s:10:\"Block test\";s:11:\"description\";s:21:\"Provides test blocks.\";s:7:\"package\";s:7:\"Testing\";s:7:\"version\";s:4:\"7.69\";s:4:\"core\";s:3:\"7.x\";s:6:\"hidden\";b:1;s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1576696221\";s:5:\"mtime\";i:1588734977;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:5:\"files\";a:0:{}s:9:\"bootstrap\";i:0;}'),('modules/blog/blog.module','blog','module','',0,0,-1,0,'a:12:{s:4:\"name\";s:4:\"Blog\";s:11:\"description\";s:25:\"Enables multi-user blogs.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.69\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"blog.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1576696221\";s:5:\"mtime\";i:1588734977;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/book/book.module','book','module','',0,0,-1,0,'a:14:{s:4:\"name\";s:4:\"Book\";s:11:\"description\";s:66:\"Allows users to create and organize related content in an outline.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.69\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:9:\"book.test\";}s:9:\"configure\";s:27:\"admin/content/book/settings\";s:11:\"stylesheets\";a:1:{s:3:\"all\";a:1:{s:8:\"book.css\";s:21:\"modules/book/book.css\";}}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1576696221\";s:5:\"mtime\";i:1588734977;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/color/color.module','color','module','',1,0,7001,0,'a:12:{s:4:\"name\";s:5:\"Color\";s:11:\"description\";s:70:\"Allows administrators to change the color scheme of compatible themes.\";s:7:\"package\";s:4:\"Core\";s:7:\"version\";s:4:\"7.69\";s:4:\"core\";s:3:\"7.x\";s:5:\"files\";a:1:{i:0;s:10:\"color.test\";}s:7:\"project\";s:6:\"drupal\";s:9:\"datestamp\";s:10:\"1576696221\";s:5:\"mtime\";i:1588734977;s:12:\"dependencies\";a:0:{}s:3:\"php\";s:5:\"5.2.4\";s:9:\"bootstrap\";i:0;}'),('modules/comment/comment.module','comment','module','',1,0,7009,0,'a:14:{s:4:\"name\";s:7:\"Comment\";s:11:\"description\";s:57:\"Allows users to comment on and discuss published content
  2009. /*!40000 ALTER TABLE `system` ENABLE KEYS */;
  2010. UNLOCK TABLES;
  2011. --
  2012. -- Table structure for table `taxonomy_index`
  2013. --
  2014. DROP TABLE IF EXISTS `taxonomy_index`;
  2015. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2016. /*!40101 SET character_set_client = utf8 */;
  2017. CREATE TABLE `taxonomy_index` (
  2018. `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid this record tracks.',
  2019. `tid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The term ID.',
  2020. `sticky` tinyint(4) DEFAULT '0' COMMENT 'Boolean indicating whether the node is sticky.',
  2021. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the node was created.',
  2022. KEY `term_node` (`tid`,`sticky`,`created`),
  2023. KEY `nid` (`nid`)
  2024. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Maintains denormalized information about node/term...';
  2025. /*!40101 SET character_set_client = @saved_cs_client */;
  2026. --
  2027. -- Dumping data for table `taxonomy_index`
  2028. --
  2029. LOCK TABLES `taxonomy_index` WRITE;
  2030. /*!40000 ALTER TABLE `taxonomy_index` DISABLE KEYS */;
  2031. /*!40000 ALTER TABLE `taxonomy_index` ENABLE KEYS */;
  2032. UNLOCK TABLES;
  2033. --
  2034. -- Table structure for table `taxonomy_term_data`
  2035. --
  2036. DROP TABLE IF EXISTS `taxonomy_term_data`;
  2037. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2038. /*!40101 SET character_set_client = utf8 */;
  2039. CREATE TABLE `taxonomy_term_data` (
  2040. `tid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique term ID.',
  2041. `vid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The taxonomy_vocabulary.vid of the vocabulary to which the term is assigned.',
  2042. `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The term name.',
  2043. `description` longtext COMMENT 'A description of the term.',
  2044. `format` varchar(255) DEFAULT NULL COMMENT 'The filter_format.format of the description.',
  2045. `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'The weight of this term in relation to other terms.',
  2046. PRIMARY KEY (`tid`),
  2047. KEY `taxonomy_tree` (`vid`,`weight`,`name`),
  2048. KEY `vid_name` (`vid`,`name`),
  2049. KEY `name` (`name`)
  2050. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores term information.';
  2051. /*!40101 SET character_set_client = @saved_cs_client */;
  2052. --
  2053. -- Dumping data for table `taxonomy_term_data`
  2054. --
  2055. LOCK TABLES `taxonomy_term_data` WRITE;
  2056. /*!40000 ALTER TABLE `taxonomy_term_data` DISABLE KEYS */;
  2057. /*!40000 ALTER TABLE `taxonomy_term_data` ENABLE KEYS */;
  2058. UNLOCK TABLES;
  2059. --
  2060. -- Table structure for table `taxonomy_term_hierarchy`
  2061. --
  2062. DROP TABLE IF EXISTS `taxonomy_term_hierarchy`;
  2063. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2064. /*!40101 SET character_set_client = utf8 */;
  2065. CREATE TABLE `taxonomy_term_hierarchy` (
  2066. `tid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: The taxonomy_term_data.tid of the term.',
  2067. `parent` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: The taxonomy_term_data.tid of the term’s parent. 0 indicates no parent.',
  2068. PRIMARY KEY (`tid`,`parent`),
  2069. KEY `parent` (`parent`)
  2070. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores the hierarchical relationship between terms.';
  2071. /*!40101 SET character_set_client = @saved_cs_client */;
  2072. --
  2073. -- Dumping data for table `taxonomy_term_hierarchy`
  2074. --
  2075. LOCK TABLES `taxonomy_term_hierarchy` WRITE;
  2076. /*!40000 ALTER TABLE `taxonomy_term_hierarchy` DISABLE KEYS */;
  2077. /*!40000 ALTER TABLE `taxonomy_term_hierarchy` ENABLE KEYS */;
  2078. UNLOCK TABLES;
  2079. --
  2080. -- Table structure for table `taxonomy_vocabulary`
  2081. --
  2082. DROP TABLE IF EXISTS `taxonomy_vocabulary`;
  2083. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2084. /*!40101 SET character_set_client = utf8 */;
  2085. CREATE TABLE `taxonomy_vocabulary` (
  2086. `vid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique vocabulary ID.',
  2087. `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the vocabulary.',
  2088. `machine_name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The vocabulary machine name.',
  2089. `description` longtext COMMENT 'Description of the vocabulary.',
  2090. `hierarchy` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'The type of hierarchy allowed within the vocabulary. (0 = disabled, 1 = single, 2 = multiple)',
  2091. `module` varchar(255) NOT NULL DEFAULT '' COMMENT 'The module which created the vocabulary.',
  2092. `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'The weight of this vocabulary in relation to other vocabularies.',
  2093. PRIMARY KEY (`vid`),
  2094. UNIQUE KEY `machine_name` (`machine_name`),
  2095. KEY `list` (`weight`,`name`)
  2096. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores vocabulary information.';
  2097. /*!40101 SET character_set_client = @saved_cs_client */;
  2098. --
  2099. -- Dumping data for table `taxonomy_vocabulary`
  2100. --
  2101. LOCK TABLES `taxonomy_vocabulary` WRITE;
  2102. /*!40000 ALTER TABLE `taxonomy_vocabulary` DISABLE KEYS */;
  2103. INSERT INTO `taxonomy_vocabulary` VALUES (1,'Tags','tags','Use tags to group articles on similar topics into categories.',0,'taxonomy',0);
  2104. /*!40000 ALTER TABLE `taxonomy_vocabulary` ENABLE KEYS */;
  2105. UNLOCK TABLES;
  2106. --
  2107. -- Table structure for table `url_alias`
  2108. --
  2109. DROP TABLE IF EXISTS `url_alias`;
  2110. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2111. /*!40101 SET character_set_client = utf8 */;
  2112. CREATE TABLE `url_alias` (
  2113. `pid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'A unique path alias identifier.',
  2114. `source` varchar(255) NOT NULL DEFAULT '' COMMENT 'The Drupal path this alias is for; e.g. node/12.',
  2115. `alias` varchar(255) NOT NULL DEFAULT '' COMMENT 'The alias for this path; e.g. title-of-the-story.',
  2116. `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language 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.',
  2117. PRIMARY KEY (`pid`),
  2118. KEY `alias_language_pid` (`alias`,`language`,`pid`),
  2119. KEY `source_language_pid` (`source`,`language`,`pid`)
  2120. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='A list of URL aliases for Drupal paths; a user may visit...';
  2121. /*!40101 SET character_set_client = @saved_cs_client */;
  2122. --
  2123. -- Dumping data for table `url_alias`
  2124. --
  2125. LOCK TABLES `url_alias` WRITE;
  2126. /*!40000 ALTER TABLE `url_alias` DISABLE KEYS */;
  2127. /*!40000 ALTER TABLE `url_alias` ENABLE KEYS */;
  2128. UNLOCK TABLES;
  2129. --
  2130. -- Table structure for table `users`
  2131. --
  2132. DROP TABLE IF EXISTS `users`;
  2133. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2134. /*!40101 SET character_set_client = utf8 */;
  2135. CREATE TABLE `users` (
  2136. `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: Unique user ID.',
  2137. `name` varchar(60) NOT NULL DEFAULT '' COMMENT 'Unique user name.',
  2138. `pass` varchar(128) NOT NULL DEFAULT '' COMMENT 'User’s password (hashed).',
  2139. `mail` varchar(254) DEFAULT '' COMMENT 'User’s e-mail address.',
  2140. `theme` varchar(255) NOT NULL DEFAULT '' COMMENT 'User’s default theme.',
  2141. `signature` varchar(255) NOT NULL DEFAULT '' COMMENT 'User’s signature.',
  2142. `signature_format` varchar(255) DEFAULT NULL COMMENT 'The filter_format.format of the signature.',
  2143. `created` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp for when user was created.',
  2144. `access` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp for previous time user accessed the site.',
  2145. `login` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp for user’s last login.',
  2146. `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Whether the user is active(1) or blocked(0).',
  2147. `timezone` varchar(32) DEFAULT NULL COMMENT 'User’s time zone.',
  2148. `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'User’s default language.',
  2149. `picture` int(11) NOT NULL DEFAULT '0' COMMENT 'Foreign key: file_managed.fid of user’s picture.',
  2150. `init` varchar(254) DEFAULT '' COMMENT 'E-mail address used for initial account creation.',
  2151. `data` longblob COMMENT 'A serialized array of name value pairs that are related to the user. Any form values posted during user edit are stored and are loaded into the $user object during user_load(). Use of this field is discouraged and it will likely disappear in a future...',
  2152. PRIMARY KEY (`uid`),
  2153. UNIQUE KEY `name` (`name`),
  2154. KEY `access` (`access`),
  2155. KEY `created` (`created`),
  2156. KEY `mail` (`mail`),
  2157. KEY `picture` (`picture`)
  2158. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Stores user data.';
  2159. /*!40101 SET character_set_client = @saved_cs_client */;
  2160. --
  2161. -- Dumping data for table `users`
  2162. --
  2163. LOCK TABLES `users` WRITE;
  2164. /*!40000 ALTER TABLE `users` DISABLE KEYS */;
  2165. INSERT INTO `users` VALUES (0,'','','','','',NULL,0,0,0,0,NULL,'',0,'',NULL),(1,'admin','$S$DLX0p3FcoT3Oy83MMfpfUnMf6VsWfpscPlKPhn8OXclI9uUa22oR','admin@example.com','','','filtered_html',1588735007,1588737799,1588735034,1,'UTC','',0,'admin@example.com','a:1:{s:7:\"overlay\";i:1;}');
  2166. /*!40000 ALTER TABLE `users` ENABLE KEYS */;
  2167. UNLOCK TABLES;
  2168. --
  2169. -- Table structure for table `users_roles`
  2170. --
  2171. DROP TABLE IF EXISTS `users_roles`;
  2172. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2173. /*!40101 SET character_set_client = utf8 */;
  2174. CREATE TABLE `users_roles` (
  2175. `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: users.uid for user.',
  2176. `rid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: role.rid for role.',
  2177. PRIMARY KEY (`uid`,`rid`),
  2178. KEY `rid` (`rid`)
  2179. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Maps users to roles.';
  2180. /*!40101 SET character_set_client = @saved_cs_client */;
  2181. --
  2182. -- Dumping data for table `users_roles`
  2183. --
  2184. LOCK TABLES `users_roles` WRITE;
  2185. /*!40000 ALTER TABLE `users_roles` DISABLE KEYS */;
  2186. INSERT INTO `users_roles` VALUES (1,3);
  2187. /*!40000 ALTER TABLE `users_roles` ENABLE KEYS */;
  2188. UNLOCK TABLES;
  2189. --
  2190. -- Table structure for table `variable`
  2191. --
  2192. DROP TABLE IF EXISTS `variable`;
  2193. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2194. /*!40101 SET character_set_client = utf8 */;
  2195. CREATE TABLE `variable` (
  2196. `name` varchar(128) NOT NULL DEFAULT '' COMMENT 'The name of the variable.',
  2197. `value` longblob NOT NULL COMMENT 'The value of the variable.',
  2198. PRIMARY KEY (`name`)
  2199. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Named variable/value pairs created by Drupal core or any...';
  2200. /*!40101 SET character_set_client = @saved_cs_client */;
  2201. --
  2202. -- Dumping data for table `variable`
  2203. --
  2204. LOCK TABLES `variable` WRITE;
  2205. /*!40000 ALTER TABLE `variable` DISABLE KEYS */;
  2206. INSERT INTO `variable` VALUES ('additional_settings__active_tab_should_have_been_page','s:15:\"edit-submission\";'),('additional_settings__active_tab_test_paragraphs','s:12:\"edit-display\";'),('admin_theme','s:5:\"seven\";'),('clean_url','b:1;'),('comment_anonymous_should_have_been_page','i:0;'),('comment_anonymous_test_paragraphs','i:0;'),('comment_default_mode_should_have_been_page','i:1;'),('comment_default_mode_test_paragraphs','i:1;'),('comment_default_per_page_should_have_been_page','s:2:\"50\";'),('comment_default_per_page_test_paragraphs','s:2:\"50\";'),('comment_form_location_should_have_been_page','i:1;'),('comment_form_location_test_paragraphs','i:1;'),('comment_page','i:0;'),('comment_preview_should_have_been_page','s:1:\"1\";'),('comment_preview_test_paragraphs','s:1:\"1\";'),('comment_should_have_been_page','s:1:\"2\";'),('comment_subject_field_should_have_been_page','i:1;'),('comment_subject_field_test_paragraphs','i:1;'),('comment_test_paragraphs','s:1:\"2\";'),('cron_key','s:43:\"a7nYDjeDdGYKvaKvpzs2WqUwm-SUyMFJIJZ0v-V6gxw\";'),('cron_last','i:1588735007;'),('css_js_query_string','s:6:\"q9w3ve\";'),('date_default_timezone','s:3:\"UTC\";'),('drupal_all_databases_are_utf8mb4','b:1;'),('drupal_private_key','s:43:\"yOvly3EjVuqglxrvTlKgddCU2aIb_Mkt34GMfgppQwE\";'),('field_bundle_settings_field_collection_item__field_test_paragraphs_content','a:2:{s:10:\"view_modes\";a:1:{s:4:\"full\";a:1:{s:15:\"custom_settings\";b:0;}}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:0:{}s:7:\"display\";a:0:{}}}'),('field_bundle_settings_node__should_have_been_page','a:2:{s:10:\"view_modes\";a:0:{}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:1:{s:5:\"title\";a:1:{s:6:\"weight\";s:2:\"-5\";}}s:7:\"display\";a:0:{}}}'),('field_bundle_settings_node__test_paragraphs','a:2:{s:10:\"view_modes\";a:0:{}s:12:\"extra_fields\";a:2:{s:4:\"form\";a:1:{s:5:\"title\";a:1:{s:6:\"weight\";s:2:\"-5\";}}s:7:\"display\";a:0:{}}}'),('filter_fallback_format','s:10:\"plain_text\";'),('install_profile','s:8:\"standard\";'),('install_task','s:4:\"done\";'),('install_time','i:1588735007;'),('menu_expanded','a:0:{}'),('menu_masks','a:35:{i:0;i:501;i:1;i:493;i:2;i:250;i:3;i:247;i:4;i:246;i:5;i:245;i:6;i:125;i:7;i:123;i:8;i:122;i:9;i:121;i:10;i:117;i:11;i:63;i:12;i:62;i:13;i:61;i:14;i:60;i:15;i:59;i:16;i:58;i:17;i:44;i:18;i:31;i:19;i:30;i:20;i:29;i:21;i:28;i:22;i:26;i:23;i:24;i:24;i:21;i:25;i:15;i:26;i:14;i:27;i:13;i:28;i:11;i:29;i:7;i:30;i:6;i:31;i:5;i:32;i:3;i:33;i:2;i:34;i:1;}'),('menu_options_should_have_been_page','a:1:{i:0;s:9:\"main-menu\";}'),('menu_options_test_paragraphs','a:1:{i:0;s:9:\"main-menu\";}'),('menu_parent_should_have_been_page','s:11:\"main-menu:0\";'),('menu_parent_test_paragraphs','s:11:\"main-menu:0\";'),('node_admin_theme','s:1:\"1\";'),('node_options_page','a:1:{i:0;s:6:\"status\";}'),('node_options_should_have_been_page','a:2:{i:0;s:6:\"status\";i:1;s:7:\"promote\";}'),('node_options_test_paragraphs','a:1:{i:0;s:6:\"status\";}'),('node_preview_should_have_been_page','s:1:\"1\";'),('node_preview_test_paragraphs','s:1:\"1\";'),('node_submitted_page','b:0;'),('node_submitted_should_have_been_page','i:1;'),('node_submitted_test_paragraphs','i:1;'),('path_alias_whitelist','a:0:{}'),('save_continue_should_have_been_page','s:19:\"Save and add fields\";'),('save_continue_test_paragraphs','s:19:\"Save and add fields\";'),('site_default_country','s:0:\"\";'),('site_mail','s:17:\"admin@example.com\";'),('site_name','s:16:\"My Drupal 7 Site\";'),('theme_default','s:6:\"bartik\";'),('user_admin_role','s:1:\"3\";'),('user_pictures','s:1:\"1\";'),('user_picture_dimensions','s:9:\"1024x1024\";'),('user_picture_file_size','s:3:\"800\";'),('user_picture_style','s:9:\"thumbnail\";'),('user_register','i:2;');
  2207. /*!40000 ALTER TABLE `variable` ENABLE KEYS */;
  2208. UNLOCK TABLES;
  2209. --
  2210. -- Table structure for table `watchdog`
  2211. --
  2212. DROP TABLE IF EXISTS `watchdog`;
  2213. /*!40101 SET @saved_cs_client = @@character_set_client */;
  2214. /*!40101 SET character_set_client = utf8 */;
  2215. CREATE TABLE `watchdog` (
  2216. `wid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique watchdog event ID.',
  2217. `uid` int(11) NOT NULL DEFAULT '0' COMMENT 'The users.uid of the user who triggered the event.',
  2218. `type` varchar(64) NOT NULL DEFAULT '' COMMENT 'Type of log message, for example "user" or "page not found."',
  2219. `message` longtext NOT NULL COMMENT 'Text of log message to be passed into the t() function.',
  2220. `variables` longblob NOT NULL COMMENT 'Serialized array of variables that match the message string and that is passed into the t() function.',
  2221. `severity` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'The severity level of the event; ranges from 0 (Emergency) to 7 (Debug)',
  2222. `link` varchar(255) DEFAULT '' COMMENT 'Link to view the result of the event.',
  2223. `location` text NOT NULL COMMENT 'URL of the origin of the event.',
  2224. `referer` text COMMENT 'URL of referring page.',
  2225. `hostname` varchar(128) NOT NULL DEFAULT '' COMMENT 'Hostname of the user who triggered the event.',
  2226. `timestamp` int(11) NOT NULL DEFAULT '0' COMMENT 'Unix timestamp of when event occurred.',
  2227. PRIMARY KEY (`wid`),
  2228. KEY `type` (`type`),
  2229. KEY `uid` (`uid`),
  2230. KEY `severity` (`severity`)
  2231. ) ENGINE=InnoDB AUTO_INCREMENT=65 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='Table that contains logs of all system events.';
  2232. /*!40101 SET character_set_client = @saved_cs_client */;
  2233. --
  2234. -- Dumping data for table `watchdog`
  2235. --
  2236. LOCK TABLES `watchdog` WRITE;
  2237. /*!40000 ALTER TABLE `watchdog` DISABLE KEYS */;
  2238. INSERT INTO `watchdog` VALUES (1,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:5:\"dblog\";}',6,'','http://default/','','127.0.0.1',1588735009),(2,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:5:\"dblog\";}',6,'','http://default/','','127.0.0.1',1588735009),(3,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:8:\"field_ui\";}',6,'','http://default/','','127.0.0.1',1588735009),(4,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:8:\"field_ui\";}',6,'','http://default/','','127.0.0.1',1588735009),(5,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"file\";}',6,'','http://default/','','127.0.0.1',1588735009),(6,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:4:\"file\";}',6,'','http://default/','','127.0.0.1',1588735009),(7,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:7:\"options\";}',6,'','http://default/','','127.0.0.1',1588735009),(8,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:7:\"options\";}',6,'','http://default/','','127.0.0.1',1588735009),(9,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:8:\"taxonomy\";}',6,'','http://default/','','127.0.0.1',1588735009),(10,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:8:\"taxonomy\";}',6,'','http://default/','','127.0.0.1',1588735009),(11,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"help\";}',6,'','http://default/','','127.0.0.1',1588735009),(12,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:4:\"help\";}',6,'','http://default/','','127.0.0.1',1588735009),(13,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:5:\"image\";}',6,'','http://default/','','127.0.0.1',1588735010),(14,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:5:\"image\";}',6,'','http://default/','','127.0.0.1',1588735010),(15,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"list\";}',6,'','http://default/','','127.0.0.1',1588735010),(16,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:4:\"list\";}',6,'','http://default/','','127.0.0.1',1588735010),(17,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"menu\";}',6,'','http://default/','','127.0.0.1',1588735010),(18,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:4:\"menu\";}',6,'','http://default/','','127.0.0.1',1588735010),(19,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:6:\"number\";}',6,'','http://default/','','127.0.0.1',1588735010),(20,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:6:\"number\";}',6,'','http://default/','','127.0.0.1',1588735010),(21,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:7:\"overlay\";}',6,'','http://default/','','127.0.0.1',1588735010),(22,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:7:\"overlay\";}',6,'','http://default/','','127.0.0.1',1588735010),(23,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:4:\"path\";}',6,'','http://default/','','127.0.0.1',1588735010),(24,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:4:\"path\";}',6,'','http://default/','','127.0.0.1',1588735010),(25,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:3:\"rdf\";}',6,'','http://default/','','127.0.0.1',1588735010),(26,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:3:\"rdf\";}',6,'','http://default/','','127.0.0.1',1588735010),(27,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:6:\"search\";}',6,'','http://default/','','127.0.0.1',1588735010),(28,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:6:\"search\";}',6,'','http://default/','','127.0.0.1',1588735010),(29,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:8:\"shortcut\";}',6,'','http://default/','','127.0.0.1',1588735010),(30,0,'system','%module module enabled.','a:1:{s:7:\"%module\";s:8:\"shortcut\";}',6,'','http://default/','','127.0.0.1',1588735010),(31,0,'system','%module module installed.','a:1:{s:7:\"%module\";s:7:\"toolbar\";}',6,'','http://default/','','127.0.0.1',158873
  2239. /*!40000 ALTER TABLE `watchdog` ENABLE KEYS */;
  2240. UNLOCK TABLES;
  2241. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  2242. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  2243. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  2244. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  2245. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  2246. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  2247. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  2248. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  2249. -- Dump completed on 2020-05-06 4:03:36