-- MySQL dump 10.13 Distrib 5.5.25, for osx10.6 (i386) -- -- Host: localhost Database: dev_d8 -- ------------------------------------------------------ -- Server version 5.5.25 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `aggregator_feed` -- DROP TABLE IF EXISTS `aggregator_feed`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `aggregator_feed` ( `fid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique feed ID.', `uuid` varchar(128) DEFAULT NULL COMMENT 'Unique Key: Universally unique identifier for this entity.', `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'Title of the feed.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of this feed.', `url` text NOT NULL COMMENT 'URL to the feed.', `refresh` int(11) NOT NULL DEFAULT '0' COMMENT 'How often to check for new feed items, in seconds.', `checked` int(11) NOT NULL DEFAULT '0' COMMENT 'Last time feed was checked for new items, as Unix timestamp.', `queued` int(11) NOT NULL DEFAULT '0' COMMENT 'Time when this feed was queued for refresh, 0 if not queued.', `link` text NOT NULL COMMENT 'The parent website of the feed; comes from the element in the feed.', `description` longtext NOT NULL COMMENT 'The parent website’s description; comes from the element in the feed.', `image` longtext NOT NULL COMMENT 'An image representing the feed.', `hash` varchar(64) NOT NULL DEFAULT '' COMMENT 'Calculated hash of the feed data, used for validating cache.', `etag` varchar(255) NOT NULL DEFAULT '' COMMENT 'Entity tag HTTP response header, used for validating cache.', `modified` int(11) NOT NULL DEFAULT '0' COMMENT 'When the feed was last modified, as a Unix timestamp.', PRIMARY KEY (`fid`), UNIQUE KEY `title` (`title`), KEY `url` (`url`(255)), KEY `queued` (`queued`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores feeds to be parsed by the aggregator.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `aggregator_item` -- DROP TABLE IF EXISTS `aggregator_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `aggregator_item` ( `iid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique ID for feed item.', `fid` int(11) NOT NULL DEFAULT '0' COMMENT 'The aggregator_feed.fid to which this item belongs.', `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'Title of the feed item.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of this feed item.', `link` text NOT NULL COMMENT 'Link to the feed item.', `author` varchar(255) NOT NULL DEFAULT '' COMMENT 'Author of the feed item.', `description` longtext NOT NULL COMMENT 'Body of the feed item.', `timestamp` int(11) DEFAULT NULL COMMENT 'Posted date of the feed item, as a Unix timestamp.', `guid` text NOT NULL COMMENT 'Unique identifier for the feed item.', PRIMARY KEY (`iid`), KEY `fid` (`fid`), KEY `timestamp` (`timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the individual items imported from feeds.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `ban_ip` -- DROP TABLE IF EXISTS `ban_ip`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ban_ip` ( `iid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: unique ID for IP addresses.', `ip` varchar(40) NOT NULL DEFAULT '' COMMENT 'IP address', PRIMARY KEY (`iid`), KEY `ip` (`ip`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores banned IP addresses.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `batch` -- DROP TABLE IF EXISTS `batch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `batch` ( `bid` int(10) unsigned NOT NULL COMMENT 'Primary Key: Unique batch ID.', `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.', `timestamp` int(11) NOT NULL COMMENT 'A Unix timestamp indicating when this batch was submitted for processing. Stale batches are purged at cron time.', `batch` longblob COMMENT 'A serialized array containing the processing data for the batch.', PRIMARY KEY (`bid`), KEY `token` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores details about batches (processes that run in multiple'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `book` -- DROP TABLE IF EXISTS `book`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `book` ( `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The book page’s node.nid.', `bid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The book ID is the book.nid of the top-level page.', `pid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The parent ID (pid) is the id of the node above in the hierarchy, or zero if the node is at the top level in its outline.', `has_children` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Flag indicating whether any nodes have this node as a parent (1 = children exist, 0 = no children).', `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'Weight among book entries in the same book at the same depth.', `depth` smallint(6) NOT NULL DEFAULT '0' COMMENT 'The depth relative to the top level. A link with pid == 0 will have depth == 1.', `p1` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The first nid in the materialized path. If N = depth, then pN must equal the nid. If depth > 1 then p(N-1) must equal the pid. All pX where X > depth must equal zero. The columns p1 .. p9 are also called the parents.', `p2` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The second nid in the materialized path. See p1.', `p3` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The third nid in the materialized path. See p1.', `p4` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The fourth nid in the materialized path. See p1.', `p5` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The fifth nid in the materialized path. See p1.', `p6` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The sixth nid in the materialized path. See p1.', `p7` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The seventh nid in the materialized path. See p1.', `p8` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The eighth nid in the materialized path. See p1.', `p9` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The ninth nid in the materialized path. See p1.', PRIMARY KEY (`nid`), KEY `book_parents` (`bid`,`p1`,`p2`,`p3`,`p4`,`p5`,`p6`,`p7`,`p8`,`p9`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores book outline information. Uniquely defines the locati'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `cache_bootstrap` -- DROP TABLE IF EXISTS `cache_bootstrap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cache_bootstrap` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.', `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum_invalidations` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag invalidation sum when this entry was saved.', `checksum_deletions` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag deletion sum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Storage for the cache API.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `cache_data` -- DROP TABLE IF EXISTS `cache_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cache_data` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.', `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum_invalidations` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag invalidation sum when this entry was saved.', `checksum_deletions` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag deletion sum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Storage for the cache API.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `cache_default` -- DROP TABLE IF EXISTS `cache_default`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cache_default` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.', `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum_invalidations` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag invalidation sum when this entry was saved.', `checksum_deletions` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag deletion sum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Storage for the cache API.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `cache_discovery` -- DROP TABLE IF EXISTS `cache_discovery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cache_discovery` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.', `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum_invalidations` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag invalidation sum when this entry was saved.', `checksum_deletions` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag deletion sum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Storage for the cache API.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `cache_entity` -- DROP TABLE IF EXISTS `cache_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cache_entity` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.', `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum_invalidations` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag invalidation sum when this entry was saved.', `checksum_deletions` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag deletion sum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Storage for the cache API.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `cache_render` -- DROP TABLE IF EXISTS `cache_render`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cache_render` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.', `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum_invalidations` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag invalidation sum when this entry was saved.', `checksum_deletions` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag deletion sum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Storage for the cache API.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `cache_tags` -- DROP TABLE IF EXISTS `cache_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cache_tags` ( `tag` varchar(255) NOT NULL DEFAULT '' COMMENT 'Namespace-prefixed tag string.', `invalidations` int(11) NOT NULL DEFAULT '0' COMMENT 'Number incremented when the tag is invalidated.', `deletions` int(11) NOT NULL DEFAULT '0' COMMENT 'Number incremented when the tag is deleted.', PRIMARY KEY (`tag`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache table for tracking cache tags related to the cache bin'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `cache_toolbar` -- DROP TABLE IF EXISTS `cache_toolbar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cache_toolbar` ( `cid` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.', `data` longblob COMMENT 'A collection of data to cache.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.', `serialized` smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', `tags` longtext COMMENT 'Space-separated list of cache tags for this entry.', `checksum_invalidations` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag invalidation sum when this entry was saved.', `checksum_deletions` int(11) NOT NULL DEFAULT '0' COMMENT 'The tag deletion sum when this entry was saved.', PRIMARY KEY (`cid`), KEY `expire` (`expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Storage for the cache API.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comment` -- DROP TABLE IF EXISTS `comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comment` ( `cid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique comment ID.', `uuid` varchar(128) DEFAULT NULL COMMENT 'Unique Key: Universally unique identifier for this entity.', `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.', `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The entity_id of the entity to which this comment is a reply.', `entity_type` varchar(255) NOT NULL DEFAULT 'node' COMMENT 'The entity_type of the entity to which this comment is a reply.', `field_id` varchar(255) NOT NULL DEFAULT 'node.comment' COMMENT 'The field_id of the field that was used to add this comment.', `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid who authored the comment. If set to 0, this comment was created by an anonymous user.', `subject` varchar(64) NOT NULL DEFAULT '' COMMENT 'The comment title.', `hostname` varchar(128) NOT NULL DEFAULT '' COMMENT 'The author’s host name.', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'The time that the comment was created, as a Unix timestamp.', `changed` int(11) NOT NULL DEFAULT '0' COMMENT 'The time that the comment was last edited, as a Unix timestamp.', `status` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT 'The published status of a comment. (0 = Not Published, 1 = Published)', `thread` varchar(255) NOT NULL COMMENT 'The alphadecimal representation of the comment’s place in a thread, consisting of a base 36 string prefixed by an integer indicating its length.', `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.', `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.', `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.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of this comment.', PRIMARY KEY (`cid`), UNIQUE KEY `uuid` (`uuid`), KEY `comment_status_pid` (`pid`,`status`), KEY `comment_num_new` (`entity_id`,`entity_type`(32),`field_id`(32),`status`,`created`,`cid`,`thread`), KEY `comment_uid` (`uid`), KEY `comment_entity_langcode` (`entity_id`,`entity_type`(32),`field_id`(32),`langcode`), KEY `comment_created` (`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores comments and associated data.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comment__comment_body` -- DROP TABLE IF EXISTS `comment__comment_body`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comment__comment_body` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `comment_body_value` longtext, `comment_body_format` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `comment_body_format` (`comment_body_format`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for comment field comment_body.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comment_entity_statistics` -- DROP TABLE IF EXISTS `comment_entity_statistics`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comment_entity_statistics` ( `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The entity_id of the entity for which the statistics are compiled.', `entity_type` varchar(255) NOT NULL DEFAULT 'node' COMMENT 'The entity_type of the entity to which this comment is a reply.', `field_id` varchar(255) NOT NULL DEFAULT 'node__comment' COMMENT 'The field_id of the field that was used to add this comment.', `cid` int(11) NOT NULL DEFAULT '0' COMMENT 'The comment.cid of the last comment.', `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.', `last_comment_name` varchar(60) DEFAULT NULL COMMENT 'The name of the latest author to post a comment on this node, from comment.name.', `last_comment_uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The user ID of the latest author to post a comment on this node, from comment.uid.', `comment_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The total number of comments on this entity.', PRIMARY KEY (`entity_id`,`entity_type`(32),`field_id`(32)), KEY `last_comment_timestamp` (`last_comment_timestamp`), KEY `comment_count` (`comment_count`), KEY `last_comment_uid` (`last_comment_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maintains statistics of entity and comments posts to show "n'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comment_revision__comment_body` -- DROP TABLE IF EXISTS `comment_revision__comment_body`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comment_revision__comment_body` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `comment_body_value` longtext, `comment_body_format` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `comment_body_format` (`comment_body_format`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for comment field comment_body.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `config` -- DROP TABLE IF EXISTS `config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `config` ( `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique config object name.', `data` longblob COMMENT 'A serialized configuration object data.', PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The base table for configuration data.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `config_snapshot` -- DROP TABLE IF EXISTS `config_snapshot`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `config_snapshot` ( `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique config object name.', `data` longblob COMMENT 'A serialized configuration object data.', PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The base table for configuration data.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `content_translation` -- DROP TABLE IF EXISTS `content_translation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `content_translation` ( `entity_type` varchar(32) NOT NULL DEFAULT '' COMMENT 'The entity type this translation relates to', `entity_id` varchar(128) NOT NULL DEFAULT '' COMMENT 'The entity id this translation relates to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The target language for this translation.', `source` varchar(32) NOT NULL DEFAULT '' COMMENT 'The source language from which this translation was created.', `outdated` int(11) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this translation needs to be updated.', `uid` int(11) NOT NULL DEFAULT '0' COMMENT 'The author of this translation.', `status` int(11) NOT NULL DEFAULT '1' COMMENT 'Boolean indicating whether the translation is visible to non-translators.', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the translation was created.', `changed` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the translation was most recently saved.', PRIMARY KEY (`entity_type`,`entity_id`,`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Table to track content translations'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `custom_block` -- DROP TABLE IF EXISTS `custom_block`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `custom_block` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The block’s custom_block.id.', `uuid` varchar(128) DEFAULT NULL COMMENT 'Unique Key: Universally unique identifier for this entity.', `info` varchar(128) NOT NULL DEFAULT '' COMMENT 'Block description.', `revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The current block_custom_revision.revision_id version identifier.', `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'The type of this custom block.', `changed` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the custom block was most recently saved.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of this node.', PRIMARY KEY (`id`), UNIQUE KEY `info` (`info`), UNIQUE KEY `revision_id` (`revision_id`), UNIQUE KEY `uuid` (`uuid`), KEY `block_custom_type` (`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores contents of custom-made blocks.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `custom_block__body` -- DROP TABLE IF EXISTS `custom_block__body`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `custom_block__body` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `body_value` longtext, `body_summary` longtext, `body_format` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `body_format` (`body_format`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for custom_block field body.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `custom_block_revision` -- DROP TABLE IF EXISTS `custom_block_revision`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `custom_block_revision` ( `id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The block’s custom_block.id.', `revision_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The current version identifier.', `log` longtext NOT NULL COMMENT 'The log entry explaining the changes in this version.', `info` varchar(128) NOT NULL DEFAULT '' COMMENT 'Block description.', `changed` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the version was most recently saved.', PRIMARY KEY (`revision_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores contents of custom-made blocks.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `custom_block_revision__body` -- DROP TABLE IF EXISTS `custom_block_revision__body`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `custom_block_revision__body` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `body_value` longtext, `body_summary` longtext, `body_format` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `body_format` (`body_format`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for custom_block field body.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `file_managed` -- DROP TABLE IF EXISTS `file_managed`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `file_managed` ( `fid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'File ID.', `uuid` varchar(128) DEFAULT NULL COMMENT 'Unique Key: Universally unique identifier for this entity.', `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid of the user who is associated with the file.', `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.', `uri` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'The URI to access the file (either local or remote).', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of this file.', `filemime` varchar(255) NOT NULL DEFAULT '' COMMENT 'The file’s MIME type.', `filesize` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'The size of the file in bytes.', `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 system.file.temporary_maximum_age will be removed during a cron run.', `created` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'UNIX timestamp for when the file added.', `changed` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'UNIX timestamp for when the file was last changed.', PRIMARY KEY (`fid`), UNIQUE KEY `uri` (`uri`), UNIQUE KEY `uuid` (`uuid`), KEY `uid` (`uid`), KEY `status` (`status`), KEY `changed` (`changed`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores information for uploaded files.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `file_usage` -- DROP TABLE IF EXISTS `file_usage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `file_usage` ( `fid` int(10) unsigned NOT NULL COMMENT 'File ID.', `module` varchar(50) NOT NULL DEFAULT '' COMMENT 'The name of the module that is using the file.', `type` varchar(64) NOT NULL DEFAULT '' COMMENT 'The name of the object type in which the file is used.', `id` varchar(64) NOT NULL DEFAULT '0' COMMENT 'The primary key of the object using the file.', `count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The number of times this file is used by this object.', PRIMARY KEY (`fid`,`type`,`id`,`module`), KEY `type_id` (`type`,`id`), KEY `fid_count` (`fid`,`count`), KEY `fid_module` (`fid`,`module`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Track where a file is used.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `flood` -- DROP TABLE IF EXISTS `flood`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `flood` ( `fid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Unique flood event ID.', `event` varchar(64) NOT NULL DEFAULT '' COMMENT 'Name of event (e.g. contact).', `identifier` varchar(128) NOT NULL DEFAULT '' COMMENT 'Identifier of the visitor, such as an IP address or hostname.', `timestamp` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp of the event.', `expiration` int(11) NOT NULL DEFAULT '0' COMMENT 'Expiration timestamp. Expired events are purged on cron run.', PRIMARY KEY (`fid`), KEY `allow` (`event`,`identifier`,`timestamp`), KEY `purge` (`expiration`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Flood controls the threshold of events, such as the number o'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `forum` -- DROP TABLE IF EXISTS `forum`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `forum` ( `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid of the node.', `vid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: The node.vid of the node.', `tid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The taxonomy_term_data.tid of the forum term assigned to the node.', PRIMARY KEY (`vid`), KEY `forum_topic` (`nid`,`tid`), KEY `tid` (`tid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the relationship of nodes to forum terms.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `forum_index` -- DROP TABLE IF EXISTS `forum_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `forum_index` ( `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid this record tracks.', `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The title of this node, always treated as non-markup plain text.', `tid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The term ID.', `sticky` tinyint(4) DEFAULT '0' COMMENT 'Boolean indicating whether the node is sticky.', `created` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the node was created.', `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.timestamp.', `comment_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The total number of comments on this node.', KEY `forum_topics` (`nid`,`tid`,`sticky`,`last_comment_timestamp`), KEY `created` (`created`), KEY `last_comment_timestamp` (`last_comment_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maintains denormalized information about node/term relations'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `history` -- DROP TABLE IF EXISTS `history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `history` ( `uid` int(11) NOT NULL DEFAULT '0' COMMENT 'The users.uid that read the node nid.', `nid` int(11) NOT NULL DEFAULT '0' COMMENT 'The node.nid that was read.', `timestamp` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp at which the read occurred.', PRIMARY KEY (`uid`,`nid`), KEY `nid` (`nid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A record of which users have read which nodes.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `key_value` -- DROP TABLE IF EXISTS `key_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `key_value` ( `collection` varchar(128) NOT NULL DEFAULT '' COMMENT 'A named collection of key and value pairs.', `name` varchar(128) NOT NULL DEFAULT '' COMMENT 'The key of the key-value pair. As KEY is a SQL reserved keyword, name was chosen instead.', `value` longblob NOT NULL COMMENT 'The value.', PRIMARY KEY (`collection`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Generic key-value storage table. See the state system for an'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `key_value_expire` -- DROP TABLE IF EXISTS `key_value_expire`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `key_value_expire` ( `collection` varchar(128) NOT NULL DEFAULT '' COMMENT 'A named collection of key and value pairs.', `name` varchar(128) NOT NULL DEFAULT '' COMMENT 'The key of the key/value pair.', `value` longblob NOT NULL COMMENT 'The value of the key/value pair.', `expire` int(11) NOT NULL DEFAULT '2147483647' COMMENT 'The time since Unix epoch in seconds when this item expires. Defaults to the maximum possible time.', PRIMARY KEY (`collection`,`name`), KEY `all` (`name`,`collection`,`expire`), KEY `expire` (`expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Generic key/value storage table with an expiration.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `locale_file` -- DROP TABLE IF EXISTS `locale_file`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `locale_file` ( `project` varchar(255) NOT NULL DEFAULT '' COMMENT 'A unique short name to identify the project the file belongs to.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'Language code of this translation. References language.langcode.', `filename` varchar(255) NOT NULL DEFAULT '' COMMENT 'Filename of the imported file.', `version` varchar(128) NOT NULL DEFAULT '' COMMENT 'Version tag of the imported file.', `uri` varchar(255) NOT NULL DEFAULT '' COMMENT 'URI of the remote file, the resulting local file or the locally imported file.', `timestamp` int(11) DEFAULT '0' COMMENT 'Unix timestamp of the imported file.', `last_checked` int(11) DEFAULT '0' COMMENT 'Unix timestamp of the last time this translation was confirmed to be the most recent release available.', PRIMARY KEY (`project`,`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='File import status information for interface translation fil'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `locale_project` -- DROP TABLE IF EXISTS `locale_project`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `locale_project` ( `name` varchar(255) NOT NULL COMMENT 'A unique short name to identify the project.', `project_type` varchar(15) NOT NULL COMMENT 'Project type: core, module, or theme.', `core` varchar(4) NOT NULL DEFAULT '' COMMENT 'Core compatibility string for this project, for example: 8.x', `version` varchar(128) NOT NULL DEFAULT '' COMMENT 'The version release of the project, for example: 8.x-2.1 or 8.x-1.0-dev', `server_pattern` varchar(255) NOT NULL DEFAULT '' COMMENT 'Pattern of path and name of the gettext file at the translation server.', `status` int(11) NOT NULL DEFAULT '1' COMMENT 'The status of the project. Possible values are: 1 = enabled, 0 = disabled.', PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Translation status information for projects and server data.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `locales_location` -- DROP TABLE IF EXISTS `locales_location`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `locales_location` ( `lid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Unique identifier of this location.', `sid` int(11) NOT NULL COMMENT 'Unique identifier of this string.', `type` varchar(50) NOT NULL DEFAULT '' COMMENT 'The location type (file, config, path, etc).', `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Type dependent location information (file name, path, etc).', `version` varchar(20) NOT NULL DEFAULT 'none' COMMENT 'Version of Drupal where the location was found.', PRIMARY KEY (`lid`), KEY `string_id` (`sid`), KEY `string_type` (`sid`,`type`) ) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8 COMMENT='Location information for source strings.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `locales_source` -- DROP TABLE IF EXISTS `locales_source`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `locales_source` ( `lid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Unique identifier of this string.', `source` blob NOT NULL COMMENT 'The original string in English.', `context` varchar(255) NOT NULL DEFAULT '' COMMENT 'The context this string applies to.', `version` varchar(20) NOT NULL DEFAULT 'none' COMMENT 'Version of Drupal where the string was last used (for locales optimization).', PRIMARY KEY (`lid`), KEY `source_context` (`source`(30),`context`) ) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8 COMMENT='List of English source strings.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `locales_target` -- DROP TABLE IF EXISTS `locales_target`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `locales_target` ( `lid` int(11) NOT NULL DEFAULT '0' COMMENT 'Source string ID. References locales_source.lid.', `translation` blob NOT NULL COMMENT 'Translation string value in this language.', `language` varchar(12) NOT NULL DEFAULT '' COMMENT 'Language code. References language.langcode.', `customized` int(11) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether the translation is custom to this site.', PRIMARY KEY (`language`,`lid`), KEY `lid` (`lid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores translated versions of strings.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `menu_links` -- DROP TABLE IF EXISTS `menu_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `menu_links` ( `menu_name` varchar(32) NOT NULL DEFAULT '' COMMENT 'The menu name. All links with the same menu name (such as ’tools’) are part of the same menu.', `mlid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The menu link ID (mlid) is the integer primary key.', `uuid` varchar(128) DEFAULT NULL COMMENT 'Unique Key: Universally unique identifier for this entity.', `machine_name` varchar(255) DEFAULT NULL COMMENT 'Unique machine name: Optional human-readable ID for this link.', `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.', `link_path` varchar(255) NOT NULL DEFAULT '' COMMENT 'The Drupal path or external path this link points to.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of this link.', `link_title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The text displayed for the link.', `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.', `module` varchar(50) NOT NULL DEFAULT 'system' COMMENT 'The name of the module that generated this link.', `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)', `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).', `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).', `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)', `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'Link weight among links in the same menu at the same depth.', `depth` smallint(6) NOT NULL DEFAULT '0' COMMENT 'The depth relative to the top level. A link with plid == 0 will have depth == 1.', `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).', `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.', `p2` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The second mlid in the materialized path. See p1.', `p3` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The third mlid in the materialized path. See p1.', `p4` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The fourth mlid in the materialized path. See p1.', `p5` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The fifth mlid in the materialized path. See p1.', `p6` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The sixth mlid in the materialized path. See p1.', `p7` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The seventh mlid in the materialized path. See p1.', `p8` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The eighth mlid in the materialized path. See p1.', `p9` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The ninth mlid in the materialized path. See p1.', `updated` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Flag that indicates that this link was generated during the update from Drupal 5.', `route_name` varchar(255) DEFAULT NULL COMMENT 'The machine name of a defined Symfony Route this menu item represents.', `route_parameters` longblob COMMENT 'Serialized array of route parameters of this menu link.', PRIMARY KEY (`mlid`), KEY `path_menu` (`link_path`(128),`menu_name`), KEY `menu_plid_expand_child` (`menu_name`,`plid`,`expanded`,`has_children`), KEY `menu_parents` (`menu_name`,`p1`,`p2`,`p3`,`p4`,`p5`,`p6`,`p7`,`p8`,`p9`) ) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8 COMMENT='Contains the individual links within a menu.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node` -- DROP TABLE IF EXISTS `node`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node` ( `nid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for a node.', `uuid` varchar(128) DEFAULT NULL COMMENT 'Unique Key: Universally unique identifier for this entity.', `vid` int(10) unsigned DEFAULT NULL COMMENT 'The current node_field_revision.vid version identifier.', `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'The type of this node.', PRIMARY KEY (`nid`), UNIQUE KEY `vid` (`vid`), UNIQUE KEY `uuid` (`uuid`), KEY `node_type` (`type`(4)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='The base table for nodes.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__body` -- DROP TABLE IF EXISTS `node__body`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__body` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `body_value` longtext, `body_summary` longtext, `body_format` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `body_format` (`body_format`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field body.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__comment` -- DROP TABLE IF EXISTS `node__comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__comment` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `comment_status` int(11) NOT NULL DEFAULT '0' COMMENT 'Whether comments are allowed on this entity: 0 = no, 1 = closed (read only), 2 = open (read/write).', PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field comment.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__comment_forum` -- DROP TABLE IF EXISTS `node__comment_forum`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__comment_forum` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `comment_forum_status` int(11) NOT NULL DEFAULT '0' COMMENT 'Whether comments are allowed on this entity: 0 = no, 1 = closed (read only), 2 = open (read/write).', PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field comment_forum.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_boolean` -- DROP TABLE IF EXISTS `node__field_boolean`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_boolean` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_boolean_value` int(11) DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_boolean_value` (`field_boolean_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_boolean.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_datum` -- DROP TABLE IF EXISTS `node__field_datum`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_datum` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_datum_value` varchar(20) DEFAULT NULL COMMENT 'The date value.', PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_datum_value` (`field_datum_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_datum.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_email` -- DROP TABLE IF EXISTS `node__field_email`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_email` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_email_value` varchar(254) DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_email.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_entity_ref` -- DROP TABLE IF EXISTS `node__field_entity_ref`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_entity_ref` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_entity_ref_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the target entity.', `field_entity_ref_revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The revision ID of the target entity.', PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_entity_ref_target_id` (`field_entity_ref_target_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_entity_ref.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_image` -- DROP TABLE IF EXISTS `node__field_image`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_image` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_image_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the file entity.', `field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.', `field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.', `field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.', `field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.', PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_image_target_id` (`field_image_target_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_image.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_link` -- DROP TABLE IF EXISTS `node__field_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_link` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_link_url` varchar(2048) DEFAULT NULL COMMENT 'The URL of the link.', `field_link_title` varchar(255) DEFAULT NULL COMMENT 'The link text.', `field_link_route_name` varchar(255) DEFAULT NULL COMMENT 'The machine name of a defined Route this link represents.', `field_link_route_parameters` longblob COMMENT 'Serialized array of route parameters of the link.', `field_link_options` longblob COMMENT 'Serialized array of options for the link.', PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_link.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_list_float` -- DROP TABLE IF EXISTS `node__field_list_float`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_list_float` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_list_float_value` float DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_list_float_value` (`field_list_float_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_list_float.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_list_int` -- DROP TABLE IF EXISTS `node__field_list_int`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_list_int` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_list_int_value` int(11) DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_list_int_value` (`field_list_int_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_list_int.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_list_text` -- DROP TABLE IF EXISTS `node__field_list_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_list_text` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_list_text_value` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_list_text_value` (`field_list_text_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_list_text.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_num_decimal` -- DROP TABLE IF EXISTS `node__field_num_decimal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_num_decimal` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_num_decimal_value` decimal(10,2) DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_num_decimal.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_num_float` -- DROP TABLE IF EXISTS `node__field_num_float`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_num_float` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_num_float_value` float DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_num_float.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_num_int` -- DROP TABLE IF EXISTS `node__field_num_int`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_num_int` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_num_int_value` int(11) DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_num_int.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_simple_file` -- DROP TABLE IF EXISTS `node__field_simple_file`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_simple_file` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_simple_file_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the file entity.', `field_simple_file_display` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT 'Flag to control whether this file should be displayed when viewing content.', `field_simple_file_description` text COMMENT 'A description of the file.', PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_simple_file_target_id` (`field_simple_file_target_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_simple_file.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_tags` -- DROP TABLE IF EXISTS `node__field_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_tags` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_tags_target_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_tags_target_id` (`field_tags_target_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_tags.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_telephone` -- DROP TABLE IF EXISTS `node__field_telephone`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_telephone` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_telephone_value` varchar(256) DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_telephone.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__field_text` -- DROP TABLE IF EXISTS `node__field_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__field_text` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_text_value` varchar(255) DEFAULT NULL, `field_text_format` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_text_format` (`field_text_format`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field field_text.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node__taxonomy_forums` -- DROP TABLE IF EXISTS `node__taxonomy_forums`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node__taxonomy_forums` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `taxonomy_forums_target_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `taxonomy_forums_target_id` (`taxonomy_forums_target_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for node field taxonomy_forums.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_access` -- DROP TABLE IF EXISTS `node_access`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_access` ( `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid this record affects.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of this node.', `fallback` int(10) unsigned NOT NULL DEFAULT '1' COMMENT 'Boolean indicating whether this record should be used as a fallback if a language condition is not provided.', `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.', `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.', `grant_view` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can view this node.', `grant_update` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can edit this node.', `grant_delete` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether a user with the realm/grant pair can delete this node.', PRIMARY KEY (`nid`,`gid`,`realm`,`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Identifies which realm/grant pairs a user must possess in or'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_counter` -- DROP TABLE IF EXISTS `node_counter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_counter` ( `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid for these statistics.', `totalcount` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'The total number of times the node has been viewed.', `daycount` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'The total number of times the node has been viewed today.', `timestamp` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The most recent time the node has been viewed.', PRIMARY KEY (`nid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Access statistics for nodes.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_field_data` -- DROP TABLE IF EXISTS `node_field_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_field_data` ( `nid` int(10) unsigned NOT NULL COMMENT 'The primary identifier for a node.', `vid` int(10) unsigned NOT NULL COMMENT 'The current node_field_revision.vid version identifier.', `type` varchar(32) NOT NULL DEFAULT '' COMMENT 'The node_type.type of this node.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of these node property values.', `default_langcode` int(11) NOT NULL DEFAULT '1' COMMENT 'Boolean indicating whether the property values are in the language.langcode of this node.', `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The title of this node, always treated as non-markup plain text.', `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid that owns this node; initially, this is the user that created it.', `status` int(11) NOT NULL DEFAULT '1' COMMENT 'Boolean indicating whether the node translation is published (visible to non-administrators).', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the node translation was created.', `changed` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the node translation was most recently saved.', `promote` int(11) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether the node translation should be displayed on the front page.', `sticky` int(11) NOT NULL DEFAULT '0' COMMENT 'Boolean indicating whether the node translation should be displayed at the top of lists in which it appears.', PRIMARY KEY (`nid`,`langcode`), KEY `node_changed` (`changed`), KEY `node_created` (`created`), KEY `node_default_langcode` (`default_langcode`), KEY `node_langcode` (`langcode`), KEY `node_frontpage` (`promote`,`status`,`sticky`,`created`), KEY `node_status_type` (`status`,`type`,`nid`), KEY `node_title_type` (`title`,`type`(4)), KEY `node_type` (`type`(4)), KEY `vid` (`vid`), KEY `uid` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data table for node base fields.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_field_revision` -- DROP TABLE IF EXISTS `node_field_revision`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_field_revision` ( `nid` int(10) unsigned NOT NULL COMMENT 'The node this version belongs to.', `vid` int(10) unsigned NOT NULL COMMENT 'The primary identifier for this version.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of this version.', `default_langcode` int(11) NOT NULL DEFAULT '1' COMMENT 'Boolean indicating whether the property values of this version are in the language.langcode of this node.', `title` varchar(255) NOT NULL DEFAULT '' COMMENT 'The title of this version, always treated as non-markup plain text.', `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid that created this node.', `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).', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the node was created.', `changed` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the version was most recently saved.', `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.', `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.', PRIMARY KEY (`vid`,`langcode`), KEY `uid` (`uid`), KEY `node_default_langcode` (`default_langcode`), KEY `node_langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision table for node base fields.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision` -- DROP TABLE IF EXISTS `node_revision`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision` ( `nid` int(10) unsigned NOT NULL COMMENT 'The node this version belongs to.', `vid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The primary identifier for this version.', `revision_uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid that created this version.', `log` longtext COMMENT 'The log entry explaining the changes in this version.', `revision_timestamp` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the version was created.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of this version.', PRIMARY KEY (`vid`), KEY `nid` (`nid`), KEY `revision_uid` (`revision_uid`), KEY `node_langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores information about each saved version of a node.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__body` -- DROP TABLE IF EXISTS `node_revision__body`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__body` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `body_value` longtext, `body_summary` longtext, `body_format` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `body_format` (`body_format`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field body.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__comment` -- DROP TABLE IF EXISTS `node_revision__comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__comment` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `comment_status` int(11) NOT NULL DEFAULT '0' COMMENT 'Whether comments are allowed on this entity: 0 = no, 1 = closed (read only), 2 = open (read/write).', PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field comment.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__comment_forum` -- DROP TABLE IF EXISTS `node_revision__comment_forum`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__comment_forum` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `comment_forum_status` int(11) NOT NULL DEFAULT '0' COMMENT 'Whether comments are allowed on this entity: 0 = no, 1 = closed (read only), 2 = open (read/write).', PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field comment_forum.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_boolean` -- DROP TABLE IF EXISTS `node_revision__field_boolean`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_boolean` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_boolean_value` int(11) DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_boolean_value` (`field_boolean_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_boolean.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_datum` -- DROP TABLE IF EXISTS `node_revision__field_datum`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_datum` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_datum_value` varchar(20) DEFAULT NULL COMMENT 'The date value.', PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_datum_value` (`field_datum_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_datum.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_email` -- DROP TABLE IF EXISTS `node_revision__field_email`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_email` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_email_value` varchar(254) DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_email.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_entity_ref` -- DROP TABLE IF EXISTS `node_revision__field_entity_ref`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_entity_ref` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_entity_ref_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the target entity.', `field_entity_ref_revision_id` int(10) unsigned DEFAULT NULL COMMENT 'The revision ID of the target entity.', PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_entity_ref_target_id` (`field_entity_ref_target_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_entity_ref.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_image` -- DROP TABLE IF EXISTS `node_revision__field_image`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_image` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_image_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the file entity.', `field_image_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.', `field_image_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.', `field_image_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.', `field_image_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.', PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_image_target_id` (`field_image_target_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_image.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_link` -- DROP TABLE IF EXISTS `node_revision__field_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_link` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_link_url` varchar(2048) DEFAULT NULL COMMENT 'The URL of the link.', `field_link_title` varchar(255) DEFAULT NULL COMMENT 'The link text.', `field_link_route_name` varchar(255) DEFAULT NULL COMMENT 'The machine name of a defined Route this link represents.', `field_link_route_parameters` longblob COMMENT 'Serialized array of route parameters of the link.', `field_link_options` longblob COMMENT 'Serialized array of options for the link.', PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_link.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_list_float` -- DROP TABLE IF EXISTS `node_revision__field_list_float`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_list_float` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_list_float_value` float DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_list_float_value` (`field_list_float_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_list_float.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_list_int` -- DROP TABLE IF EXISTS `node_revision__field_list_int`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_list_int` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_list_int_value` int(11) DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_list_int_value` (`field_list_int_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_list_int.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_list_text` -- DROP TABLE IF EXISTS `node_revision__field_list_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_list_text` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_list_text_value` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_list_text_value` (`field_list_text_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_list_text.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_num_decimal` -- DROP TABLE IF EXISTS `node_revision__field_num_decimal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_num_decimal` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_num_decimal_value` decimal(10,2) DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_num_decimal.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_num_float` -- DROP TABLE IF EXISTS `node_revision__field_num_float`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_num_float` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_num_float_value` float DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_num_float.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_num_int` -- DROP TABLE IF EXISTS `node_revision__field_num_int`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_num_int` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_num_int_value` int(11) DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_num_int.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_simple_file` -- DROP TABLE IF EXISTS `node_revision__field_simple_file`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_simple_file` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_simple_file_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the file entity.', `field_simple_file_display` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT 'Flag to control whether this file should be displayed when viewing content.', `field_simple_file_description` text COMMENT 'A description of the file.', PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_simple_file_target_id` (`field_simple_file_target_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_simple_file.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_tags` -- DROP TABLE IF EXISTS `node_revision__field_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_tags` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_tags_target_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_tags_target_id` (`field_tags_target_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_tags.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_telephone` -- DROP TABLE IF EXISTS `node_revision__field_telephone`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_telephone` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_telephone_value` varchar(256) DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_telephone.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__field_text` -- DROP TABLE IF EXISTS `node_revision__field_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__field_text` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `field_text_value` varchar(255) DEFAULT NULL, `field_text_format` varchar(255) DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `field_text_format` (`field_text_format`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field field_text.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `node_revision__taxonomy_forums` -- DROP TABLE IF EXISTS `node_revision__taxonomy_forums`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `node_revision__taxonomy_forums` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `taxonomy_forums_target_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `taxonomy_forums_target_id` (`taxonomy_forums_target_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for node field taxonomy_forums.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `queue` -- DROP TABLE IF EXISTS `queue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `queue` ( `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique item ID.', `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The queue name.', `data` longblob COMMENT 'The arbitrary data for the item.', `expire` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp when the claim lease expires on the item.', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp when the item was created.', PRIMARY KEY (`item_id`), KEY `name_created` (`name`,`created`), KEY `expire` (`expire`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Stores items in queues.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `router` -- DROP TABLE IF EXISTS `router`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `router` ( `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Machine name of this route', `path` varchar(255) NOT NULL DEFAULT '' COMMENT 'The path for this URI', `pattern_outline` varchar(255) NOT NULL DEFAULT '' COMMENT 'The pattern', `fit` int(11) NOT NULL DEFAULT '0' COMMENT 'A numeric representation of how specific the path is.', `route` longblob COMMENT 'A serialized Route object', `number_parts` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Number of parts in this router path.', PRIMARY KEY (`name`), KEY `pattern_outline_fit` (`pattern_outline`,`fit`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maps paths to various callbacks (access, page and title)'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `search_dataset` -- DROP TABLE IF EXISTS `search_dataset`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `search_dataset` ( `sid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Search item ID, e.g. node ID for nodes.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The languages.langcode of the item variant.', `type` varchar(64) NOT NULL COMMENT 'Type of item, e.g. node.', `data` longtext NOT NULL COMMENT 'List of space-separated words from the item.', `reindex` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Set to force node reindexing.', PRIMARY KEY (`sid`,`langcode`,`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores items that will be searched.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `search_index` -- DROP TABLE IF EXISTS `search_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `search_index` ( `word` varchar(50) NOT NULL DEFAULT '' COMMENT 'The search_total.word that is associated with the search item.', `sid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The search_dataset.sid of the searchable item to which the word belongs.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The languages.langcode of the item variant.', `type` varchar(64) NOT NULL COMMENT 'The search_dataset.type of the searchable item to which the word belongs.', `score` float DEFAULT NULL COMMENT 'The numeric score of the word, higher being more important.', PRIMARY KEY (`word`,`sid`,`langcode`,`type`), KEY `sid_type` (`sid`,`langcode`,`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the search index, associating words, items and scores'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `search_total` -- DROP TABLE IF EXISTS `search_total`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `search_total` ( `word` varchar(50) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique word in the search index.', `count` float DEFAULT NULL COMMENT 'The count of the word in the index using Zipf’s law to equalize the probability distribution.', PRIMARY KEY (`word`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores search totals for words.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `semaphore` -- DROP TABLE IF EXISTS `semaphore`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `semaphore` ( `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique name.', `value` varchar(255) NOT NULL DEFAULT '' COMMENT 'A value for the semaphore.', `expire` double NOT NULL COMMENT 'A Unix timestamp with microseconds indicating when the semaphore should expire.', PRIMARY KEY (`name`), KEY `value` (`value`), KEY `expire` (`expire`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Table for holding semaphores, locks, flags, etc. that cannot'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `sequences` -- DROP TABLE IF EXISTS `sequences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sequences` ( `value` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The value of the sequence.', PRIMARY KEY (`value`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Stores IDs.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `sessions` -- DROP TABLE IF EXISTS `sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sessions` ( `uid` int(10) unsigned NOT NULL COMMENT 'The users.uid corresponding to a session, or 0 for anonymous user.', `sid` varchar(128) NOT NULL COMMENT 'A session ID (hashed). The value is generated by Drupal’s session handlers.', `ssid` varchar(128) NOT NULL DEFAULT '' COMMENT 'Secure session ID (hashed). The value is generated by Drupal’s session handlers.', `hostname` varchar(128) NOT NULL DEFAULT '' COMMENT 'The IP address that last used this session ID (sid).', `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.', `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.', PRIMARY KEY (`sid`,`ssid`), KEY `timestamp` (`timestamp`), KEY `uid` (`uid`), KEY `ssid` (`ssid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Drupal’s session handlers read and write into the sessions'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `shortcut` -- DROP TABLE IF EXISTS `shortcut`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `shortcut` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique shortcut ID.', `uuid` varchar(128) DEFAULT NULL COMMENT 'Unique Key: Universally unique identifier for this shortcut.', `shortcut_set` varchar(32) NOT NULL DEFAULT '' COMMENT 'The bundle of the shortcut.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of the original variant of this shortcut.', `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'Weight among shortcuts in the same shortcut set.', `route_name` varchar(255) DEFAULT NULL COMMENT 'The machine name of a defined Symfony Route this menu item represents.', `route_parameters` longblob COMMENT 'Serialized array of route parameters of this shortcut.', PRIMARY KEY (`id`), UNIQUE KEY `uuid` (`uuid`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Stores shortcut items.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `shortcut_field_data` -- DROP TABLE IF EXISTS `shortcut_field_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `shortcut_field_data` ( `id` int(10) unsigned NOT NULL COMMENT 'The shortcut.id of the shortcut.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of this variant of this shortcut.', `default_langcode` int(11) NOT NULL DEFAULT '1' COMMENT 'Boolean indicating whether the current variant is in the original entity language.', `title` varchar(32) DEFAULT NULL COMMENT 'The title of the shortcut.', PRIMARY KEY (`id`,`langcode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores shortcut properties.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `shortcut_set_users` -- DROP TABLE IF EXISTS `shortcut_set_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `shortcut_set_users` ( `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid for this set.', `set_name` varchar(32) NOT NULL DEFAULT '' COMMENT 'The shortcut_set.set_name that will be displayed for this user.', PRIMARY KEY (`uid`), KEY `set_name` (`set_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maps users to shortcut sets.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `simpletest` -- DROP TABLE IF EXISTS `simpletest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `simpletest` ( `message_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique simpletest message ID.', `test_id` int(11) NOT NULL DEFAULT '0' COMMENT 'Test ID, messages belonging to the same ID are reported together', `test_class` varchar(255) NOT NULL DEFAULT '' COMMENT 'The name of the class that created this message.', `status` varchar(9) NOT NULL DEFAULT '' COMMENT 'Message status. Core understands pass, fail, exception.', `message` text NOT NULL COMMENT 'The message itself.', `message_group` varchar(255) NOT NULL DEFAULT '' COMMENT 'The message group this message belongs to. For example: warning, browser, user.', `function` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the assertion function or method that created this message.', `line` int(11) NOT NULL DEFAULT '0' COMMENT 'Line number on which the function is called.', `file` varchar(255) NOT NULL DEFAULT '' COMMENT 'Name of the file where the function is called.', PRIMARY KEY (`message_id`), KEY `reporter` (`test_class`,`message_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores simpletest messages'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `simpletest_test_id` -- DROP TABLE IF EXISTS `simpletest_test_id`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `simpletest_test_id` ( `test_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique simpletest ID used to group test results together. Each time a set of tests\n are run a new test ID is used.', `last_prefix` varchar(60) DEFAULT '' COMMENT 'The last database prefix used during testing.', PRIMARY KEY (`test_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores simpletest test IDs, used to auto-incrament the test '; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `taxonomy_index` -- DROP TABLE IF EXISTS `taxonomy_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `taxonomy_index` ( `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid this record tracks.', `tid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The term ID.', `sticky` tinyint(4) DEFAULT '0' COMMENT 'Boolean indicating whether the node is sticky.', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the node was created.', PRIMARY KEY (`nid`,`tid`), KEY `term_node` (`tid`,`sticky`,`created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maintains denormalized information about node/term relations'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `taxonomy_term__forum_container` -- DROP TABLE IF EXISTS `taxonomy_term__forum_container`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `taxonomy_term__forum_container` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `forum_container_value` int(11) DEFAULT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `forum_container_value` (`forum_container_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for taxonomy_term field forum_container.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `taxonomy_term_data` -- DROP TABLE IF EXISTS `taxonomy_term_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `taxonomy_term_data` ( `tid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique term ID.', `uuid` varchar(128) DEFAULT NULL COMMENT 'Unique Key: Universally unique identifier for this entity.', `vid` varchar(32) NOT NULL DEFAULT '' COMMENT 'The ID of the vocabulary to which the term is assigned.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of this term.', `name` varchar(255) NOT NULL DEFAULT '' COMMENT 'The term name.', `description__value` longtext COMMENT 'A description of the term.', `description__format` varchar(255) DEFAULT NULL COMMENT 'The filter format ID of the description.', `weight` int(11) NOT NULL DEFAULT '0' COMMENT 'The weight of this term in relation to other terms.', `changed` int(11) NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the term was most recently saved.', PRIMARY KEY (`tid`), UNIQUE KEY `uuid` (`uuid`), KEY `taxonomy_tree` (`vid`,`weight`,`name`), KEY `vid_name` (`vid`,`name`), KEY `name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Stores term information.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `taxonomy_term_hierarchy` -- DROP TABLE IF EXISTS `taxonomy_term_hierarchy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `taxonomy_term_hierarchy` ( `tid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: The taxonomy_term_data.tid of the term.', `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.', PRIMARY KEY (`tid`,`parent`), KEY `parent` (`parent`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores the hierarchical relationship between terms.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `taxonomy_term_revision__forum_container` -- DROP TABLE IF EXISTS `taxonomy_term_revision__forum_container`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `taxonomy_term_revision__forum_container` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `forum_container_value` int(11) DEFAULT NULL, PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `forum_container_value` (`forum_container_value`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for taxonomy_term field forum_conta'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `tracker_node` -- DROP TABLE IF EXISTS `tracker_node`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tracker_node` ( `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid this record tracks.', `published` tinyint(4) DEFAULT '0' COMMENT 'Boolean indicating whether the node is published.', `changed` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the node was most recently saved or commented on.', PRIMARY KEY (`nid`), KEY `tracker` (`published`,`changed`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tracks when nodes were last changed or commented on.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `tracker_user` -- DROP TABLE IF EXISTS `tracker_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tracker_user` ( `nid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The node.nid this record tracks.', `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid of the node author or commenter.', `published` tinyint(4) DEFAULT '0' COMMENT 'Boolean indicating whether the node is published.', `changed` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The Unix timestamp when the node was most recently saved or commented on.', PRIMARY KEY (`nid`,`uid`), KEY `tracker` (`uid`,`published`,`changed`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tracks when nodes were last changed or commented on, for eac'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `url_alias` -- DROP TABLE IF EXISTS `url_alias`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `url_alias` ( `pid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'A unique path alias identifier.', `source` varchar(255) NOT NULL DEFAULT '' COMMENT 'The Drupal path this alias is for; e.g. node/12.', `alias` varchar(255) NOT NULL DEFAULT '' COMMENT 'The alias for this path; e.g. title-of-the-story.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language code this alias is for; if ’und’, the alias will be used for unknown languages. Each Drupal path can have an alias for each supported language.', PRIMARY KEY (`pid`), KEY `alias_langcode_pid` (`alias`,`langcode`,`pid`), KEY `source_langcode_pid` (`source`,`langcode`,`pid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='A list of URL aliases for Drupal paths; a user may visit eit'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `user__user_picture` -- DROP TABLE IF EXISTS `user__user_picture`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user__user_picture` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `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', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `user_picture_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the file entity.', `user_picture_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.', `user_picture_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.', `user_picture_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.', `user_picture_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.', PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `user_picture_target_id` (`user_picture_target_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Data storage for user field user_picture.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `user_revision__user_picture` -- DROP TABLE IF EXISTS `user_revision__user_picture`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_revision__user_picture` ( `bundle` varchar(128) NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to', `langcode` varchar(32) NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `user_picture_target_id` int(10) unsigned NOT NULL COMMENT 'The ID of the file entity.', `user_picture_alt` varchar(512) DEFAULT NULL COMMENT 'Alternative image text, for the image’s ’alt’ attribute.', `user_picture_title` varchar(1024) DEFAULT NULL COMMENT 'Image title text, for the image’s ’title’ attribute.', `user_picture_width` int(10) unsigned DEFAULT NULL COMMENT 'The width of the image in pixels.', `user_picture_height` int(10) unsigned DEFAULT NULL COMMENT 'The height of the image in pixels.', PRIMARY KEY (`entity_id`,`revision_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `deleted` (`deleted`), KEY `entity_id` (`entity_id`), KEY `revision_id` (`revision_id`), KEY `langcode` (`langcode`), KEY `user_picture_target_id` (`user_picture_target_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Revision archive storage for user field user_picture.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: Unique user ID.', `uuid` varchar(128) DEFAULT NULL COMMENT 'Unique Key: Universally unique identifier for this entity.', `name` varchar(60) NOT NULL DEFAULT '' COMMENT 'Unique user name.', `langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode of the user’s profile.', `pass` varchar(128) NOT NULL DEFAULT '' COMMENT 'User’s password (hashed).', `mail` varchar(254) DEFAULT '' COMMENT 'User’s e-mail address.', `signature` varchar(255) NOT NULL DEFAULT '' COMMENT 'User’s signature.', `signature_format` varchar(255) DEFAULT NULL COMMENT 'The filter format ID of the signature.', `created` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp for when user was created.', `access` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp for previous time user accessed the site.', `login` int(11) NOT NULL DEFAULT '0' COMMENT 'Timestamp for user’s last login.', `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT 'Whether the user is active(1) or blocked(0).', `timezone` varchar(32) DEFAULT NULL COMMENT 'User’s time zone.', `preferred_langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode that the user prefers for receiving emails and viewing the site.', `preferred_admin_langcode` varchar(12) NOT NULL DEFAULT '' COMMENT 'The language.langcode that the user prefers for viewing administration pages.', `init` varchar(254) DEFAULT '' COMMENT 'E-mail address used for initial account creation.', PRIMARY KEY (`uid`), UNIQUE KEY `name` (`name`), UNIQUE KEY `uuid` (`uuid`), KEY `access` (`access`), KEY `created` (`created`), KEY `mail` (`mail`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores user data.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `users_data` -- DROP TABLE IF EXISTS `users_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users_data` ( `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary key: users.uid for user.', `module` varchar(50) NOT NULL DEFAULT '' COMMENT 'The name of the module declaring the variable.', `name` varchar(128) NOT NULL DEFAULT '' COMMENT 'The identifier of the data.', `value` longblob COMMENT 'The value.', `serialized` tinyint(3) unsigned DEFAULT '0' COMMENT 'Whether value is serialized.', PRIMARY KEY (`uid`,`module`,`name`), KEY `module` (`module`), KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores module data as key/value pairs per user.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `users_roles` -- DROP TABLE IF EXISTS `users_roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users_roles` ( `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Primary Key: users.uid for user.', `rid` varchar(64) NOT NULL COMMENT 'Primary Key: ID for the role.', PRIMARY KEY (`uid`,`rid`), KEY `rid` (`rid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maps users to roles.'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `watchdog` -- DROP TABLE IF EXISTS `watchdog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `watchdog` ( `wid` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key: Unique watchdog event ID.', `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'The users.uid of the user who triggered the event.', `type` varchar(64) NOT NULL DEFAULT '' COMMENT 'Type of log message, for example "user" or "page not found."', `message` longtext NOT NULL COMMENT 'Text of log message to be passed into the t() function.', `variables` longblob NOT NULL COMMENT 'Serialized array of variables that match the message string and that is passed into the t() function.', `severity` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'The severity level of the event; ranges from 0 (Emergency) to 7 (Debug)', `link` varchar(255) DEFAULT '' COMMENT 'Link to view the result of the event.', `location` text NOT NULL COMMENT 'URL of the origin of the event.', `referer` text COMMENT 'URL of referring page.', `hostname` varchar(128) NOT NULL DEFAULT '' COMMENT 'Hostname of the user who triggered the event.', `timestamp` int(11) NOT NULL DEFAULT '0' COMMENT 'Unix timestamp of when event occurred.', PRIMARY KEY (`wid`), KEY `type` (`type`), KEY `uid` (`uid`), KEY `severity` (`severity`) ) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8 COMMENT='Table that contains logs of all system events.'; /*!40101 SET character_set_client = @saved_cs_client */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2014-05-14 10:58:47