SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!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 */; -- -- Database: `eengine755` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]actions` -- CREATE TABLE `[[dbprefix]]actions` ( `action_id` int(4) unsigned NOT NULL AUTO_INCREMENT, `class` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `method` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `csrf_exempt` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`action_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=40 ; -- -- Dumping data for table `[[dbprefix]]actions` -- INSERT INTO `[[dbprefix]]actions` VALUES (1, 'Channel', 'submit_entry', 0), (2, 'Channel', 'smiley_pop', 0), (3, 'Channel', 'combo_loader', 0), (4, 'Channel', 'live_preview', 1), (5, 'Comment', 'insert_new_comment', 0), (6, 'Comment_mcp', 'delete_comment_notification', 0), (7, 'Comment', 'comment_subscribe', 0), (8, 'Comment', 'edit_comment', 0), (9, 'Consent', 'grantConsent', 0), (10, 'Consent', 'submitConsent', 0), (11, 'Consent', 'withdrawConsent', 0), (12, 'Member', 'registration_form', 0), (13, 'Member', 'register_member', 0), (14, 'Member', 'activate_member', 0), (15, 'Member', 'member_login', 0), (16, 'Member', 'member_logout', 0), (17, 'Member', 'send_reset_token', 0), (18, 'Member', 'process_reset_password', 0), (19, 'Member', 'send_member_email', 0), (20, 'Member', 'update_un_pw', 0), (21, 'Member', 'do_member_search', 0), (22, 'Member', 'member_delete', 0), (23, 'Member', 'send_username', 0), (24, 'Member', 'update_profile', 0), (25, 'Member', 'upload_avatar', 0), (26, 'Member', 'recaptcha_check', 1), (27, 'Member', 'validate', 0), (28, 'Rte', 'pages_autocomplete', 0), (29, 'File', 'addonIcon', 1), (30, 'Relationship', 'entryList', 0), (31, 'Search', 'do_search', 1), (32, 'Pro', 'setCookie', 0), (33, 'Pro', 'qrCode', 0), (34, 'Pro', 'validateMfa', 0), (35, 'Pro', 'invokeMfa', 0), (36, 'Pro', 'enableMfa', 0), (37, 'Pro', 'disableMfa', 0), (38, 'Pro', 'resetMfa', 0), (39, 'Email', 'send_email', 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]captcha` -- CREATE TABLE `[[dbprefix]]captcha` ( `captcha_id` bigint(13) unsigned NOT NULL AUTO_INCREMENT, `date` int(10) unsigned NOT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `word` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`captcha_id`), KEY `word` (`word`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]categories` -- CREATE TABLE `[[dbprefix]]categories` ( `cat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `group_id` int(6) unsigned NOT NULL, `parent_id` int(4) unsigned NOT NULL, `cat_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `cat_url_title` varchar(75) COLLATE utf8mb4_unicode_ci NOT NULL, `cat_description` text COLLATE utf8mb4_unicode_ci, `cat_image` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cat_order` int(4) unsigned NOT NULL, PRIMARY KEY (`cat_id`), KEY `group_id` (`group_id`), KEY `parent_id` (`parent_id`), KEY `cat_name` (`cat_name`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=7 ; -- -- Dumping data for table `[[dbprefix]]categories` -- INSERT INTO `[[dbprefix]]categories` VALUES (1, 1, 1, 0, 'News', 'news', NULL, NULL, 1), (2, 1, 1, 0, 'Personal', 'personal', NULL, NULL, 2), (3, 1, 1, 0, 'Photos', 'photos', NULL, NULL, 3), (4, 1, 1, 0, 'Videos', 'videos', NULL, NULL, 4), (5, 1, 1, 0, 'Music', 'music', NULL, NULL, 5), (6, 1, 2, 0, 'Not Shown', 'not-shown', NULL, NULL, 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]category_fields` -- CREATE TABLE `[[dbprefix]]category_fields` ( `field_id` int(6) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `group_id` int(4) unsigned NOT NULL, `field_name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `field_label` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `field_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'text', `field_list_items` text COLLATE utf8mb4_unicode_ci NOT NULL, `field_maxl` smallint(3) NOT NULL DEFAULT '128', `field_ta_rows` tinyint(2) NOT NULL DEFAULT '8', `field_default_fmt` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'none', `field_show_fmt` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `field_text_direction` char(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'ltr', `field_required` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `field_order` int(3) unsigned NOT NULL, `field_settings` text COLLATE utf8mb4_unicode_ci, `legacy_field_data` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', PRIMARY KEY (`field_id`), KEY `site_id` (`site_id`), KEY `group_id` (`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]category_field_data` -- CREATE TABLE `[[dbprefix]]category_field_data` ( `cat_id` int(4) unsigned NOT NULL, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `group_id` int(4) unsigned NOT NULL, PRIMARY KEY (`cat_id`), KEY `site_id` (`site_id`), KEY `group_id` (`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `[[dbprefix]]category_field_data` -- INSERT INTO `[[dbprefix]]category_field_data` VALUES (1, 1, 1), (2, 1, 1), (3, 1, 1), (4, 1, 1), (5, 1, 1), (6, 1, 2); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]category_groups` -- CREATE TABLE `[[dbprefix]]category_groups` ( `group_id` int(6) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `group_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `sort_order` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'a', `exclude_group` tinyint(1) unsigned NOT NULL DEFAULT '0', `field_html_formatting` char(4) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all', `can_edit_categories` text COLLATE utf8mb4_unicode_ci, `can_delete_categories` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`group_id`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=3 ; -- -- Dumping data for table `[[dbprefix]]category_groups` -- INSERT INTO `[[dbprefix]]category_groups` VALUES (1, 1, 'Blog', 'c', 0, 'all', NULL, NULL), (2, 1, 'Slideshow', 'a', 0, 'all', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]category_group_settings` -- CREATE TABLE `[[dbprefix]]category_group_settings` ( `category_group_settings_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `channel_id` int(4) unsigned NOT NULL DEFAULT '1', `group_id` int(6) unsigned NOT NULL DEFAULT '1', `cat_required` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `cat_allow_multiple` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', PRIMARY KEY (`category_group_settings_id`), KEY `channel_id_group_id` (`channel_id`,`group_id`), KEY `site_id` (`site_id`), KEY `group_id` (`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]category_posts` -- CREATE TABLE `[[dbprefix]]category_posts` ( `entry_id` int(10) unsigned NOT NULL, `cat_id` int(10) unsigned NOT NULL, PRIMARY KEY (`entry_id`,`cat_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channels` -- CREATE TABLE `[[dbprefix]]channels` ( `channel_id` int(6) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `channel_name` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, `channel_title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `channel_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `channel_description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_lang` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL, `total_entries` mediumint(8) NOT NULL DEFAULT '0', `total_records` mediumint(8) unsigned NOT NULL DEFAULT '0', `total_comments` mediumint(8) NOT NULL DEFAULT '0', `last_entry_date` bigint(10) unsigned NOT NULL DEFAULT '0', `last_comment_date` bigint(10) unsigned NOT NULL DEFAULT '0', `cat_group` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `deft_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `search_excerpt` int(4) unsigned DEFAULT NULL, `deft_category` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `deft_comments` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `channel_require_membership` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `channel_max_chars` int(5) unsigned DEFAULT NULL, `channel_html_formatting` char(4) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all', `channel_allow_img_urls` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `channel_auto_link_urls` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `channel_notify` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `channel_notify_emails` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sticky_enabled` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `enable_entry_cloning` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `comment_url` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `comment_system_enabled` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `comment_require_membership` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `comment_moderate` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `comment_max_chars` int(5) unsigned DEFAULT '5000', `comment_timelock` int(5) unsigned NOT NULL DEFAULT '0', `comment_require_email` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `comment_text_formatting` char(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'xhtml', `comment_html_formatting` char(4) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'safe', `comment_allow_img_urls` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `comment_auto_link_urls` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `comment_notify` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `comment_notify_authors` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `comment_notify_emails` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `comment_expiration` int(4) unsigned NOT NULL DEFAULT '0', `search_results_url` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rss_url` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enable_versioning` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `max_revisions` smallint(4) unsigned NOT NULL DEFAULT '10', `default_entry_title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title_field_label` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Title', `title_field_instructions` text COLLATE utf8mb4_unicode_ci, `url_title_prefix` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enforce_auto_url_title` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `preview_url` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `allow_preview` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `max_entries` int(10) unsigned NOT NULL DEFAULT '0', `conditional_sync_required` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', PRIMARY KEY (`channel_id`), KEY `cat_group` (`cat_group`(191)), KEY `channel_name` (`channel_name`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4 ; -- -- Dumping data for table `[[dbprefix]]channels` -- INSERT INTO `[[dbprefix]]channels` VALUES (1, 1, 'about', 'About', '', NULL, 'en', 3, 3, 0, [[timestamp]], 0, NULL, 'open', NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, 'n', 'y', NULL, 'y', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, NULL, 'n', 10, NULL, 'Title', NULL, NULL, 'n', NULL, 'y', 0, 'n'), (2, 1, 'blog', 'Blog', '{base_url}blog/entry', NULL, 'en', 8, 8, 0, [[timestamp]], 0, '1', 'open', NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, 'n', 'y', NULL, 'y', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, NULL, 'n', 10, NULL, 'Title', NULL, NULL, 'n', NULL, 'y', 0, 'n'), (3, 1, 'contact', 'Contact', '', NULL, 'en', 1, 1, 0, [[timestamp]], 0, NULL, 'open', NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, 'n', 'y', NULL, 'y', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, NULL, 'n', 10, NULL, 'Title', NULL, NULL, 'n', NULL, 'y', 0, 'n'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channels_channel_fields` -- CREATE TABLE `[[dbprefix]]channels_channel_fields` ( `channel_id` int(4) unsigned NOT NULL, `field_id` int(6) unsigned NOT NULL, PRIMARY KEY (`channel_id`,`field_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channels_channel_field_groups` -- CREATE TABLE `[[dbprefix]]channels_channel_field_groups` ( `channel_id` int(4) unsigned NOT NULL, `group_id` int(4) unsigned NOT NULL, PRIMARY KEY (`channel_id`,`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `[[dbprefix]]channels_channel_field_groups` -- INSERT INTO `[[dbprefix]]channels_channel_field_groups` VALUES (1, 1), (1, 3), (1, 4), (2, 1), (2, 5), (3, 1), (3, 2), (3, 4); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channels_statuses` -- CREATE TABLE `[[dbprefix]]channels_statuses` ( `channel_id` int(4) unsigned NOT NULL, `status_id` int(4) unsigned NOT NULL, PRIMARY KEY (`channel_id`,`status_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `[[dbprefix]]channels_statuses` -- INSERT INTO `[[dbprefix]]channels_statuses` VALUES (1, 1), (1, 2), (1, 3), (2, 1), (2, 2), (3, 1), (3, 2); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_category_groups` -- CREATE TABLE `[[dbprefix]]channel_category_groups` ( `channel_id` int(6) unsigned NOT NULL, `group_id` int(6) unsigned NOT NULL, PRIMARY KEY (`channel_id`,`group_id`), KEY `group_id` (`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_data` -- CREATE TABLE `[[dbprefix]]channel_data` ( `entry_id` int(10) unsigned NOT NULL, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `channel_id` int(4) unsigned NOT NULL, PRIMARY KEY (`entry_id`), KEY `channel_id` (`channel_id`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `[[dbprefix]]channel_data` -- INSERT INTO `[[dbprefix]]channel_data` VALUES (1, 1, 3), (2, 1, 1), (3, 1, 1), (4, 1, 1), (5, 1, 2), (6, 1, 2), (7, 1, 2), (8, 1, 2), (9, 1, 2), (10, 1, 2), (11, 1, 2), (12, 1, 2); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_data_field_1` -- CREATE TABLE `[[dbprefix]]channel_data_field_1` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `field_id_1` text COLLATE utf8mb4_unicode_ci, `field_ft_1` tinytext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=13 ; -- -- Dumping data for table `[[dbprefix]]channel_data_field_1` -- INSERT INTO `[[dbprefix]]channel_data_field_1` VALUES (1, 1, 'Contact {site_name}', 'none'), (2, 2, 'Sub page one', 'none'), (3, 3, 'About {site_name}', 'none'), (4, 4, 'Sub page two', 'none'), (5, 5, 'A beautiful photograph', 'none'), (6, 6, 'Shaking it Off, a cover.', 'none'), (7, 7, 'Marrow and the broken bones.', 'none'), (8, 8, 'This is one that is hipper than most.', 'none'), (9, 9, 'Action Comedy', 'none'), (10, 10, 'A blog all about the joys of Bacon', 'none'), (11, 11, 'The one about cutting rope.', 'none'), (12, 12, 'Super old entry', 'none'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_data_field_2` -- CREATE TABLE `[[dbprefix]]channel_data_field_2` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `field_id_2` text COLLATE utf8mb4_unicode_ci, `field_ft_2` tinytext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=13 ; -- -- Dumping data for table `[[dbprefix]]channel_data_field_2` -- INSERT INTO `[[dbprefix]]channel_data_field_2` VALUES (1, 1, 'Contact us, phone, mailing, email.', 'xhtml'), (2, 2, 'Sub page examples', 'xhtml'), (3, 3, 'This is a site to show you the power of ExpressionEngine, you can remove it, you can base your next site on it, you can just use it straight.', 'xhtml'), (4, 4, 'Sub page examples', 'xhtml'), (5, 5, 'This is a very nice photograph I found, and I wanted to share.', 'xhtml'), (6, 6, 'This is how you shake it off, haters take note.', 'xhtml'), (7, 7, 'An album for the intelligent and uncommon.', 'xhtml'), (8, 8, 'A blog post about the hippest of the hipsters.', 'xhtml'), (9, 9, 'This is how it''s done, the incomparable Jackie Chan shows us the way.', 'xhtml'), (10, 10, 'This is a blog post about Bacon!', 'xhtml'), (11, 11, 'This is a quick video teaching you how to cut a rope.', 'xhtml'), (12, 12, 'Super old entry', 'xhtml'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_data_field_3` -- CREATE TABLE `[[dbprefix]]channel_data_field_3` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `field_id_3` text COLLATE utf8mb4_unicode_ci, `field_ft_3` tinytext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]channel_data_field_3` -- INSERT INTO `[[dbprefix]]channel_data_field_3` VALUES (1, 1, 'user@example.com', 'none'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_data_field_4` -- CREATE TABLE `[[dbprefix]]channel_data_field_4` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `field_id_4` text COLLATE utf8mb4_unicode_ci, `field_ft_4` tinytext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]channel_data_field_4` -- INSERT INTO `[[dbprefix]]channel_data_field_4` VALUES (1, 1, NULL, 'xhtml'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_data_field_5` -- CREATE TABLE `[[dbprefix]]channel_data_field_5` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `field_id_5` text COLLATE utf8mb4_unicode_ci, `field_ft_5` tinytext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]channel_data_field_5` -- INSERT INTO `[[dbprefix]]channel_data_field_5` VALUES (1, 1, '(555) 123-4567', 'none'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_data_field_6` -- CREATE TABLE `[[dbprefix]]channel_data_field_6` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `field_id_6` text COLLATE utf8mb4_unicode_ci, `field_ft_6` tinytext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4 ; -- -- Dumping data for table `[[dbprefix]]channel_data_field_6` -- INSERT INTO `[[dbprefix]]channel_data_field_6` VALUES (1, 2, NULL, 'xhtml'), (2, 3, NULL, 'xhtml'), (3, 4, NULL, 'xhtml'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_data_field_7` -- CREATE TABLE `[[dbprefix]]channel_data_field_7` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `field_id_7` text COLLATE utf8mb4_unicode_ci, `field_ft_7` tinytext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=5 ; -- -- Dumping data for table `[[dbprefix]]channel_data_field_7` -- INSERT INTO `[[dbprefix]]channel_data_field_7` VALUES (1, 1, 'Cupcake ipsum dolor sit. Amet I love liquorice jujubes pudding croissant I love pudding. Apple pie macaroon toffee jujubes pie tart cookie applicake caramels. Halvah macaroon I love lollipop. Wypas I love pudding brownie cheesecake tart jelly-o. Bear claw cookie chocolate bar jujubes toffee.', 'xhtml'), (2, 2, 'Bacon ipsum dolor amet duis meatball magna irure short loin, aliquip rump ipsum minim chuck pork loin picanha. Velit pancetta pariatur sed. Spare ribs cillum nostrud labore, pariatur commodo proident jerky in velit quis doner sunt. Porchetta andouille aute swine. Culpa ut chuck tri-tip.\n\n
Short ribs voluptate deserunt swine, spare ribs in doner elit ipsum do tri-tip. Laboris esse aliquip, reprehenderit magna ea shoulder short loin. Chicken velit eu incididunt prosciutto labore nisi. Et shoulder landjaeger jerky officia corned beef anim. Ea ut brisket, leberkas doner pork belly velit consectetur corned beef ham hock laboris labore. Incididunt magna kevin est ground round labore adipisicing kielbasa deserunt consectetur porchetta. Et strip steak deserunt ullamco.
\n\nLorem ipsum dolor sit amet, this is bold text consectetur this text is strongly emphasized adipisicing elit, sed do eiusmod tempor incididunt this is italic text ut labore this text is emphasized et dolore magna aliqua. Ut enim ad minim veniam, this is a link quis nostrud this is an external link laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse This text is deleted this text is inserted cillum this is a code sample dolore eu this text is highlighted fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n\nTail t-bone andouille, aute rump elit culpa in sunt. Hamburger duis irure sint, laborum cillum ea officia proident corned beef et. Beef ribs meatloaf rump short loin turkey nulla cow ex voluptate strip steak dolore occaecat. Esse quis excepteur sirloin reprehenderit lorem shoulder pastrami flank pig shank nisi short ribs bacon.\n\nExercitation voluptate capicola ut, fatback sed t-bone id. Mollit meatloaf pig meatball brisket ea sed shank cupim spare ribs magna kevin sirloin deserunt. Flank minim incididunt velit consequat. Laborum ground round filet mignon chicken officia. Capicola shankle dolore, veniam adipisicing reprehenderit ut est laborum pork chop. Pork rump cillum turkey, sausage salami non tongue ex t-bone minim duis lorem voluptate. Aute pariatur elit, est rump in corned beef cupidatat pork pig tri-tip culpa aliqua.\n\nBacon ipsum dolor amet duis meatball magna irure short loin, aliquip rump ipsum minim chuck pork loin picanha. Velit pancetta pariatur sed. Spare ribs cillum nostrud labore, pariatur commodo proident jerky in velit quis doner sunt. Porchetta andouille aute swine. Culpa ut chuck tri-tip.\n \nShort ribs voluptate deserunt swine, spare ribs in doner elit ipsum do tri-tip. Laboris esse aliquip, reprehenderit magna ea shoulder short loin. Chicken velit eu incididunt prosciutto labore nisi. Et shoulder landjaeger jerky officia corned beef anim. Ea ut brisket, leberkas doner pork belly velit consectetur corned beef ham hock laboris labore. Incididunt magna kevin est ground round labore adipisicing kielbasa deserunt consectetur porchetta. Et strip steak deserunt ullamco.\n\n
    \n
  1. This is a list item
  2. \n
  3. And another
  4. \n
  5. One more list item
  6. \n
\n\nIrure ut ut jerky id voluptate. Dolore andouille pancetta chicken, deserunt jowl enim strip steak ea ball tip cillum ham. Dolore picanha in prosciutto esse porchetta ullamco salami cupim. Tri-tip non esse, veniam spare ribs pastrami bresaola fatback.\n \nTail t-bone andouille, aute rump elit culpa in sunt. Hamburger duis irure sint, laborum cillum ea officia proident corned beef et. Beef ribs meatloaf rump short loin turkey nulla cow ex voluptate strip steak dolore occaecat. Esse quis excepteur sirloin reprehenderit lorem shoulder pastrami flank pig shank nisi short ribs bacon.\n\n\n\nExercitation voluptate capicola ut, fatback sed t-bone id. Mollit meatloaf pig meatball brisket ea sed shank cupim spare ribs magna kevin sirloin deserunt. Flank minim incididunt velit consequat. Laborum ground round filet mignon chicken officia. Capicola shankle dolore, veniam adipisicing reprehenderit ut est laborum pork chop. Pork rump cillum turkey, sausage salami non tongue ex t-bone minim duis lorem voluptate. Aute pariatur elit, est rump in corned beef cupidatat pork pig tri-tip culpa aliqua.', 'xhtml'), (3, 3, 'Bacon ipsum dolor amet duis meatball magna irure short loin, aliquip rump ipsum minim chuck pork loin picanha. Velit pancetta pariatur sed. Spare ribs cillum nostrud labore, pariatur commodo proident jerky in velit quis doner sunt. Porchetta andouille aute swine. Culpa ut chuck tri-tip.\n\n
Short ribs voluptate deserunt swine, spare ribs in doner elit ipsum do tri-tip. Laboris esse aliquip, reprehenderit magna ea shoulder short loin. Chicken velit eu incididunt prosciutto labore nisi. Et shoulder landjaeger jerky officia corned beef anim. Ea ut brisket, leberkas doner pork belly velit consectetur corned beef ham hock laboris labore. Incididunt magna kevin est ground round labore adipisicing kielbasa deserunt consectetur porchetta. Et strip steak deserunt ullamco.
\n\nLorem ipsum dolor sit amet, this is bold text consectetur this text is strongly emphasized adipisicing elit, sed do eiusmod tempor incididunt this is italic text ut labore this text is emphasized et dolore magna aliqua. Ut enim ad minim veniam, this is a link quis nostrud this is an external link laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse This text is deleted this text is inserted cillum this is a code sample dolore eu this text is highlighted fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n\nTail t-bone andouille, aute rump elit culpa in sunt. Hamburger duis irure sint, laborum cillum ea officia proident corned beef et. Beef ribs meatloaf rump short loin turkey nulla cow ex voluptate strip steak dolore occaecat. Esse quis excepteur sirloin reprehenderit lorem shoulder pastrami flank pig shank nisi short ribs bacon.\n\nExercitation voluptate capicola ut, fatback sed t-bone id. Mollit meatloaf pig meatball brisket ea sed shank cupim spare ribs magna kevin sirloin deserunt. Flank minim incididunt velit consequat. Laborum ground round filet mignon chicken officia. Capicola shankle dolore, veniam adipisicing reprehenderit ut est laborum pork chop. Pork rump cillum turkey, sausage salami non tongue ex t-bone minim duis lorem voluptate. Aute pariatur elit, est rump in corned beef cupidatat pork pig tri-tip culpa aliqua.\n\nBacon ipsum dolor amet duis meatball magna irure short loin, aliquip rump ipsum minim chuck pork loin picanha. Velit pancetta pariatur sed. Spare ribs cillum nostrud labore, pariatur commodo proident jerky in velit quis doner sunt. Porchetta andouille aute swine. Culpa ut chuck tri-tip.\n \nShort ribs voluptate deserunt swine, spare ribs in doner elit ipsum do tri-tip. Laboris esse aliquip, reprehenderit magna ea shoulder short loin. Chicken velit eu incididunt prosciutto labore nisi. Et shoulder landjaeger jerky officia corned beef anim. Ea ut brisket, leberkas doner pork belly velit consectetur corned beef ham hock laboris labore. Incididunt magna kevin est ground round labore adipisicing kielbasa deserunt consectetur porchetta. Et strip steak deserunt ullamco.\n\n
    \n
  1. This is a list item
  2. \n
  3. And another
  4. \n
  5. One more list item
  6. \n
\n\nIrure ut ut jerky id voluptate. Dolore andouille pancetta chicken, deserunt jowl enim strip steak ea ball tip cillum ham. Dolore picanha in prosciutto esse porchetta ullamco salami cupim. Tri-tip non esse, veniam spare ribs pastrami bresaola fatback.\n \nTail t-bone andouille, aute rump elit culpa in sunt. Hamburger duis irure sint, laborum cillum ea officia proident corned beef et. Beef ribs meatloaf rump short loin turkey nulla cow ex voluptate strip steak dolore occaecat. Esse quis excepteur sirloin reprehenderit lorem shoulder pastrami flank pig shank nisi short ribs bacon.\n\n\n\nExercitation voluptate capicola ut, fatback sed t-bone id. Mollit meatloaf pig meatball brisket ea sed shank cupim spare ribs magna kevin sirloin deserunt. Flank minim incididunt velit consequat. Laborum ground round filet mignon chicken officia. Capicola shankle dolore, veniam adipisicing reprehenderit ut est laborum pork chop. Pork rump cillum turkey, sausage salami non tongue ex t-bone minim duis lorem voluptate. Aute pariatur elit, est rump in corned beef cupidatat pork pig tri-tip culpa aliqua.', 'xhtml'), (4, 4, 'Bacon ipsum dolor amet duis meatball magna irure short loin, aliquip rump ipsum minim chuck pork loin picanha. Velit pancetta pariatur sed. Spare ribs cillum nostrud labore, pariatur commodo proident jerky in velit quis doner sunt. Porchetta andouille aute swine. Culpa ut chuck tri-tip.\n\n
Short ribs voluptate deserunt swine, spare ribs in doner elit ipsum do tri-tip. Laboris esse aliquip, reprehenderit magna ea shoulder short loin. Chicken velit eu incididunt prosciutto labore nisi. Et shoulder landjaeger jerky officia corned beef anim. Ea ut brisket, leberkas doner pork belly velit consectetur corned beef ham hock laboris labore. Incididunt magna kevin est ground round labore adipisicing kielbasa deserunt consectetur porchetta. Et strip steak deserunt ullamco.
\n\nLorem ipsum dolor sit amet, this is bold text consectetur this text is strongly emphasized adipisicing elit, sed do eiusmod tempor incididunt this is italic text ut labore this text is emphasized et dolore magna aliqua. Ut enim ad minim veniam, this is a link quis nostrud this is an external link laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse This text is deleted this text is inserted cillum this is a code sample dolore eu this text is highlighted fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n\nTail t-bone andouille, aute rump elit culpa in sunt. Hamburger duis irure sint, laborum cillum ea officia proident corned beef et. Beef ribs meatloaf rump short loin turkey nulla cow ex voluptate strip steak dolore occaecat. Esse quis excepteur sirloin reprehenderit lorem shoulder pastrami flank pig shank nisi short ribs bacon.\n\nExercitation voluptate capicola ut, fatback sed t-bone id. Mollit meatloaf pig meatball brisket ea sed shank cupim spare ribs magna kevin sirloin deserunt. Flank minim incididunt velit consequat. Laborum ground round filet mignon chicken officia. Capicola shankle dolore, veniam adipisicing reprehenderit ut est laborum pork chop. Pork rump cillum turkey, sausage salami non tongue ex t-bone minim duis lorem voluptate. Aute pariatur elit, est rump in corned beef cupidatat pork pig tri-tip culpa aliqua.\n\nBacon ipsum dolor amet duis meatball magna irure short loin, aliquip rump ipsum minim chuck pork loin picanha. Velit pancetta pariatur sed. Spare ribs cillum nostrud labore, pariatur commodo proident jerky in velit quis doner sunt. Porchetta andouille aute swine. Culpa ut chuck tri-tip.\n \nShort ribs voluptate deserunt swine, spare ribs in doner elit ipsum do tri-tip. Laboris esse aliquip, reprehenderit magna ea shoulder short loin. Chicken velit eu incididunt prosciutto labore nisi. Et shoulder landjaeger jerky officia corned beef anim. Ea ut brisket, leberkas doner pork belly velit consectetur corned beef ham hock laboris labore. Incididunt magna kevin est ground round labore adipisicing kielbasa deserunt consectetur porchetta. Et strip steak deserunt ullamco.\n\n
    \n
  1. This is a list item
  2. \n
  3. And another
  4. \n
  5. One more list item
  6. \n
\n\nIrure ut ut jerky id voluptate. Dolore andouille pancetta chicken, deserunt jowl enim strip steak ea ball tip cillum ham. Dolore picanha in prosciutto esse porchetta ullamco salami cupim. Tri-tip non esse, veniam spare ribs pastrami bresaola fatback.\n \nTail t-bone andouille, aute rump elit culpa in sunt. Hamburger duis irure sint, laborum cillum ea officia proident corned beef et. Beef ribs meatloaf rump short loin turkey nulla cow ex voluptate strip steak dolore occaecat. Esse quis excepteur sirloin reprehenderit lorem shoulder pastrami flank pig shank nisi short ribs bacon.\n\n\n\nExercitation voluptate capicola ut, fatback sed t-bone id. Mollit meatloaf pig meatball brisket ea sed shank cupim spare ribs magna kevin sirloin deserunt. Flank minim incididunt velit consequat. Laborum ground round filet mignon chicken officia. Capicola shankle dolore, veniam adipisicing reprehenderit ut est laborum pork chop. Pork rump cillum turkey, sausage salami non tongue ex t-bone minim duis lorem voluptate. Aute pariatur elit, est rump in corned beef cupidatat pork pig tri-tip culpa aliqua.', 'xhtml'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_data_field_8` -- CREATE TABLE `[[dbprefix]]channel_data_field_8` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `field_id_8` text COLLATE utf8mb4_unicode_ci, `field_ft_8` tinytext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=9 ; -- -- Dumping data for table `[[dbprefix]]channel_data_field_8` -- INSERT INTO `[[dbprefix]]channel_data_field_8` VALUES (1, 5, NULL, 'xhtml'), (2, 6, NULL, 'xhtml'), (3, 7, NULL, 'xhtml'), (4, 8, NULL, 'xhtml'), (5, 9, NULL, 'xhtml'), (6, 10, NULL, 'xhtml'), (7, 11, NULL, 'xhtml'), (8, 12, NULL, 'xhtml'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_data_field_9` -- CREATE TABLE `[[dbprefix]]channel_data_field_9` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `field_id_9` text COLLATE utf8mb4_unicode_ci, `field_ft_9` tinytext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=9 ; -- -- Dumping data for table `[[dbprefix]]channel_data_field_9` -- INSERT INTO `[[dbprefix]]channel_data_field_9` VALUES (1, 5, NULL, 'xhtml'), (2, 6, NULL, 'xhtml'), (3, 7, NULL, 'xhtml'), (4, 8, NULL, 'xhtml'), (5, 9, NULL, 'xhtml'), (6, 10, NULL, 'xhtml'), (7, 11, NULL, 'xhtml'), (8, 12, NULL, 'xhtml'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_data_field_10` -- CREATE TABLE `[[dbprefix]]channel_data_field_10` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `field_id_10` text COLLATE utf8mb4_unicode_ci, `field_ft_10` tinytext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=9 ; -- -- Dumping data for table `[[dbprefix]]channel_data_field_10` -- INSERT INTO `[[dbprefix]]channel_data_field_10` VALUES (1, 5, NULL, 'xhtml'), (2, 6, NULL, 'xhtml'), (3, 7, NULL, 'xhtml'), (4, 8, NULL, 'xhtml'), (5, 9, NULL, 'xhtml'), (6, 10, NULL, 'xhtml'), (7, 11, NULL, 'xhtml'), (8, 12, NULL, 'xhtml'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_data_field_11` -- CREATE TABLE `[[dbprefix]]channel_data_field_11` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `field_id_11` text COLLATE utf8mb4_unicode_ci, `field_ft_11` tinytext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=9 ; -- -- Dumping data for table `[[dbprefix]]channel_data_field_11` -- INSERT INTO `[[dbprefix]]channel_data_field_11` VALUES (1, 5, 'Lorem ipsum dolor sit amet, this is bold text consectetur this text is strongly emphasized adipisicing elit, sed do eiusmod tempor incididunt this is italic text ut labore this text is emphasized et dolore magna aliqua. Ut enim ad minim veniam, this is a link quis nostrud this is an external link laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse This text is deleted this text is inserted cillum this is a code sample dolore eu this text is highlighted fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', 'xhtml'), (2, 6, 'Lorem ipsum dolor sit amet, this is bold text consectetur this text is strongly emphasized adipisicing elit, sed do eiusmod tempor incididunt this is italic text ut labore this text is emphasized et dolore magna aliqua. Ut enim ad minim veniam, this is a link quis nostrud this is an external link laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse This text is deleted this text is inserted cillum this is a code sample dolore eu this text is highlighted fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', 'xhtml'), (3, 7, 'Lorem ipsum dolor sit amet, this is bold text consectetur this text is strongly emphasized adipisicing elit, sed do eiusmod tempor incididunt this is italic text ut labore this text is emphasized et dolore magna aliqua. Ut enim ad minim veniam, this is a link quis nostrud this is an external link laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse This text is deleted this text is inserted cillum this is a code sample dolore eu this text is highlighted fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', 'xhtml'), (4, 8, 'Bacon ipsum dolor amet duis meatball magna irure short loin, aliquip rump ipsum minim chuck pork loin picanha. Velit pancetta pariatur sed. Spare ribs cillum nostrud labore, pariatur commodo proident jerky in velit quis doner sunt. Porchetta andouille aute swine. Culpa ut chuck tri-tip.\n\n
Short ribs voluptate deserunt swine, spare ribs in doner elit ipsum do tri-tip. Laboris esse aliquip, reprehenderit magna ea shoulder short loin. Chicken velit eu incididunt prosciutto labore nisi. Et shoulder landjaeger jerky officia corned beef anim. Ea ut brisket, leberkas doner pork belly velit consectetur corned beef ham hock laboris labore. Incididunt magna kevin est ground round labore adipisicing kielbasa deserunt consectetur porchetta. Et strip steak deserunt ullamco.
\n\nLorem ipsum dolor sit amet, this is bold text consectetur this text is strongly emphasized adipisicing elit, sed do eiusmod tempor incididunt this is italic text ut labore this text is emphasized et dolore magna aliqua. Ut enim ad minim veniam, this is a link quis nostrud this is an external link laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse This text is deleted this text is inserted cillum this is a code sample dolore eu this text is highlighted fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n\nTail t-bone andouille, aute rump elit culpa in sunt. Hamburger duis irure sint, laborum cillum ea officia proident corned beef et. Beef ribs meatloaf rump short loin turkey nulla cow ex voluptate strip steak dolore occaecat. Esse quis excepteur sirloin reprehenderit lorem shoulder pastrami flank pig shank nisi short ribs bacon.\n\nExercitation voluptate capicola ut, fatback sed t-bone id. Mollit meatloaf pig meatball brisket ea sed shank cupim spare ribs magna kevin sirloin deserunt. Flank minim incididunt velit consequat. Laborum ground round filet mignon chicken officia. Capicola shankle dolore, veniam adipisicing reprehenderit ut est laborum pork chop. Pork rump cillum turkey, sausage salami non tongue ex t-bone minim duis lorem voluptate. Aute pariatur elit, est rump in corned beef cupidatat pork pig tri-tip culpa aliqua.\n\nBacon ipsum dolor amet duis meatball magna irure short loin, aliquip rump ipsum minim chuck pork loin picanha. Velit pancetta pariatur sed. Spare ribs cillum nostrud labore, pariatur commodo proident jerky in velit quis doner sunt. Porchetta andouille aute swine. Culpa ut chuck tri-tip.\n \nShort ribs voluptate deserunt swine, spare ribs in doner elit ipsum do tri-tip. Laboris esse aliquip, reprehenderit magna ea shoulder short loin. Chicken velit eu incididunt prosciutto labore nisi. Et shoulder landjaeger jerky officia corned beef anim. Ea ut brisket, leberkas doner pork belly velit consectetur corned beef ham hock laboris labore. Incididunt magna kevin est ground round labore adipisicing kielbasa deserunt consectetur porchetta. Et strip steak deserunt ullamco.\n\n
    \n
  1. This is a list item
  2. \n
  3. And another
  4. \n
  5. One more list item
  6. \n
\n\nIrure ut ut jerky id voluptate. Dolore andouille pancetta chicken, deserunt jowl enim strip steak ea ball tip cillum ham. Dolore picanha in prosciutto esse porchetta ullamco salami cupim. Tri-tip non esse, veniam spare ribs pastrami bresaola fatback.\n \nTail t-bone andouille, aute rump elit culpa in sunt. Hamburger duis irure sint, laborum cillum ea officia proident corned beef et. Beef ribs meatloaf rump short loin turkey nulla cow ex voluptate strip steak dolore occaecat. Esse quis excepteur sirloin reprehenderit lorem shoulder pastrami flank pig shank nisi short ribs bacon.\n\n\n\nExercitation voluptate capicola ut, fatback sed t-bone id. Mollit meatloaf pig meatball brisket ea sed shank cupim spare ribs magna kevin sirloin deserunt. Flank minim incididunt velit consequat. Laborum ground round filet mignon chicken officia. Capicola shankle dolore, veniam adipisicing reprehenderit ut est laborum pork chop. Pork rump cillum turkey, sausage salami non tongue ex t-bone minim duis lorem voluptate. Aute pariatur elit, est rump in corned beef cupidatat pork pig tri-tip culpa aliqua.', 'xhtml'), (5, 9, 'Lorem ipsum dolor sit amet, this is bold text consectetur this text is strongly emphasized adipisicing elit, sed do eiusmod tempor incididunt this is italic text ut labore this text is emphasized et dolore magna aliqua. Ut enim ad minim veniam, this is a link quis nostrud this is an external link laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse This text is deleted this text is inserted cillum this is a code sample dolore eu this text is highlighted fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', 'xhtml'), (6, 10, 'Bacon ipsum dolor amet duis meatball magna irure short loin, aliquip rump ipsum minim chuck pork loin picanha. Velit pancetta pariatur sed. Spare ribs cillum nostrud labore, pariatur commodo proident jerky in velit quis doner sunt. Porchetta andouille aute swine. Culpa ut chuck tri-tip.\n\n
Short ribs voluptate deserunt swine, spare ribs in doner elit ipsum do tri-tip. Laboris esse aliquip, reprehenderit magna ea shoulder short loin. Chicken velit eu incididunt prosciutto labore nisi. Et shoulder landjaeger jerky officia corned beef anim. Ea ut brisket, leberkas doner pork belly velit consectetur corned beef ham hock laboris labore. Incididunt magna kevin est ground round labore adipisicing kielbasa deserunt consectetur porchetta. Et strip steak deserunt ullamco.
\n\nLorem ipsum dolor sit amet, this is bold text consectetur this text is strongly emphasized adipisicing elit, sed do eiusmod tempor incididunt this is italic text ut labore this text is emphasized et dolore magna aliqua. Ut enim ad minim veniam, this is a link quis nostrud this is an external link laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse This text is deleted this text is inserted cillum this is a code sample dolore eu this text is highlighted fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n\nTail t-bone andouille, aute rump elit culpa in sunt. Hamburger duis irure sint, laborum cillum ea officia proident corned beef et. Beef ribs meatloaf rump short loin turkey nulla cow ex voluptate strip steak dolore occaecat. Esse quis excepteur sirloin reprehenderit lorem shoulder pastrami flank pig shank nisi short ribs bacon.\n\nExercitation voluptate capicola ut, fatback sed t-bone id. Mollit meatloaf pig meatball brisket ea sed shank cupim spare ribs magna kevin sirloin deserunt. Flank minim incididunt velit consequat. Laborum ground round filet mignon chicken officia. Capicola shankle dolore, veniam adipisicing reprehenderit ut est laborum pork chop. Pork rump cillum turkey, sausage salami non tongue ex t-bone minim duis lorem voluptate. Aute pariatur elit, est rump in corned beef cupidatat pork pig tri-tip culpa aliqua.\n\nBacon ipsum dolor amet duis meatball magna irure short loin, aliquip rump ipsum minim chuck pork loin picanha. Velit pancetta pariatur sed. Spare ribs cillum nostrud labore, pariatur commodo proident jerky in velit quis doner sunt. Porchetta andouille aute swine. Culpa ut chuck tri-tip.\n \nShort ribs voluptate deserunt swine, spare ribs in doner elit ipsum do tri-tip. Laboris esse aliquip, reprehenderit magna ea shoulder short loin. Chicken velit eu incididunt prosciutto labore nisi. Et shoulder landjaeger jerky officia corned beef anim. Ea ut brisket, leberkas doner pork belly velit consectetur corned beef ham hock laboris labore. Incididunt magna kevin est ground round labore adipisicing kielbasa deserunt consectetur porchetta. Et strip steak deserunt ullamco.\n\n
    \n
  1. This is a list item
  2. \n
  3. And another
  4. \n
  5. One more list item
  6. \n
\n\nIrure ut ut jerky id voluptate. Dolore andouille pancetta chicken, deserunt jowl enim strip steak ea ball tip cillum ham. Dolore picanha in prosciutto esse porchetta ullamco salami cupim. Tri-tip non esse, veniam spare ribs pastrami bresaola fatback.\n \nTail t-bone andouille, aute rump elit culpa in sunt. Hamburger duis irure sint, laborum cillum ea officia proident corned beef et. Beef ribs meatloaf rump short loin turkey nulla cow ex voluptate strip steak dolore occaecat. Esse quis excepteur sirloin reprehenderit lorem shoulder pastrami flank pig shank nisi short ribs bacon.\n\n\n\nExercitation voluptate capicola ut, fatback sed t-bone id. Mollit meatloaf pig meatball brisket ea sed shank cupim spare ribs magna kevin sirloin deserunt. Flank minim incididunt velit consequat. Laborum ground round filet mignon chicken officia. Capicola shankle dolore, veniam adipisicing reprehenderit ut est laborum pork chop. Pork rump cillum turkey, sausage salami non tongue ex t-bone minim duis lorem voluptate. Aute pariatur elit, est rump in corned beef cupidatat pork pig tri-tip culpa aliqua.', 'xhtml'), (7, 11, 'Lorem ipsum dolor sit amet, this is bold text consectetur this text is strongly emphasized adipisicing elit, sed do eiusmod tempor incididunt this is italic text ut labore this text is emphasized et dolore magna aliqua. Ut enim ad minim veniam, this is a link quis nostrud this is an external link laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse This text is deleted this text is inserted cillum this is a code sample dolore eu this text is highlighted fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', 'xhtml'), (8, 12, 'Lorem ipsum dolor sit amet, this is bold text consectetur this text is strongly emphasized adipisicing elit, sed do eiusmod tempor incididunt this is italic text ut labore this text is emphasized et dolore magna aliqua. Ut enim ad minim veniam, this is a link quis nostrud this is an external link laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse This text is deleted this text is inserted cillum this is a code sample dolore eu this text is highlighted fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', 'xhtml'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_entries_autosave` -- CREATE TABLE `[[dbprefix]]channel_entries_autosave` ( `entry_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `original_entry_id` int(10) unsigned NOT NULL, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `channel_id` int(4) unsigned NOT NULL, `author_id` int(10) unsigned NOT NULL DEFAULT '0', `forum_topic_id` int(10) unsigned DEFAULT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `url_title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `versioning_enabled` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `view_count_one` int(10) unsigned NOT NULL DEFAULT '0', `view_count_two` int(10) unsigned NOT NULL DEFAULT '0', `view_count_three` int(10) unsigned NOT NULL DEFAULT '0', `view_count_four` int(10) unsigned NOT NULL DEFAULT '0', `allow_comments` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `sticky` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `entry_date` bigint(10) NOT NULL, `year` char(4) COLLATE utf8mb4_unicode_ci NOT NULL, `month` char(2) COLLATE utf8mb4_unicode_ci NOT NULL, `day` char(3) COLLATE utf8mb4_unicode_ci NOT NULL, `expiration_date` bigint(10) NOT NULL DEFAULT '0', `comment_expiration_date` bigint(10) NOT NULL DEFAULT '0', `edit_date` bigint(14) DEFAULT NULL, `recent_comment_date` bigint(10) DEFAULT NULL, `comment_total` int(4) unsigned NOT NULL DEFAULT '0', `entry_data` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`entry_id`), KEY `channel_id` (`channel_id`), KEY `author_id` (`author_id`), KEY `url_title` (`url_title`(191)), KEY `status` (`status`), KEY `entry_date` (`entry_date`), KEY `expiration_date` (`expiration_date`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_entry_hidden_fields` -- CREATE TABLE `[[dbprefix]]channel_entry_hidden_fields` ( `entry_id` int(10) unsigned NOT NULL, `field_id` int(10) unsigned NOT NULL, PRIMARY KEY (`entry_id`,`field_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_fields` -- CREATE TABLE `[[dbprefix]]channel_fields` ( `field_id` int(6) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned DEFAULT '1', `field_name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `field_label` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `field_instructions` text COLLATE utf8mb4_unicode_ci, `field_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'text', `field_list_items` text COLLATE utf8mb4_unicode_ci NOT NULL, `field_pre_populate` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `field_pre_channel_id` int(6) unsigned DEFAULT NULL, `field_pre_field_id` int(6) unsigned DEFAULT NULL, `field_ta_rows` tinyint(2) DEFAULT '8', `field_maxl` smallint(3) DEFAULT NULL, `field_required` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `field_text_direction` char(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'ltr', `field_search` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `field_is_hidden` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `field_is_conditional` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `field_fmt` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'xhtml', `field_show_fmt` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `field_order` int(3) unsigned NOT NULL, `field_content_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'any', `field_settings` text COLLATE utf8mb4_unicode_ci, `legacy_field_data` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `enable_frontedit` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', PRIMARY KEY (`field_id`), KEY `field_type` (`field_type`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=12 ; -- -- Dumping data for table `[[dbprefix]]channel_fields` -- INSERT INTO `[[dbprefix]]channel_fields` VALUES (1, 0, 'seo_title', 'SEO Title', 'Page title that will be added to browser titlebar/tab.', 'text', '', 'n', NULL, NULL, 8, 256, 'n', 'ltr', 'n', 'n', 'n', 'none', 'y', 5, '', 'YTo0OntzOjEwOiJmaWVsZF9tYXhsIjtpOjI1NjtzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MDoiIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO30=', 'n', 'y'), (2, 0, 'seo_desc', 'SEO Description', 'Page Description for use in HTML meta description tag, generally only seen by machines.', 'textarea', '', 'n', NULL, NULL, 2, NULL, 'n', 'ltr', 'n', 'n', 'n', 'xhtml', 'y', 6, 'any', 'YTo0OntzOjI0OiJmaWVsZF9zaG93X2ZpbGVfc2VsZWN0b3IiO3M6MToibiI7czoxNDoiZGJfY29sdW1uX3R5cGUiO3M6NDoidGV4dCI7czoxODoiZmllbGRfc2hvd19zbWlsZXlzIjtzOjE6Im4iO3M6MjY6ImZpZWxkX3Nob3dfZm9ybWF0dGluZ19idG5zIjtzOjE6Im4iO30=', 'n', 'y'), (3, 0, 'contact_email', 'Contact Email', 'Email address someone can send Email to.', 'text', '', 'n', NULL, NULL, 8, 256, 'n', 'ltr', 'n', 'n', 'n', 'none', 'y', 6, '', 'YTo0OntzOjEwOiJmaWVsZF9tYXhsIjtpOjI1NjtzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MDoiIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO30=', 'n', 'y'), (4, 0, 'contact_address', 'Contact Address', 'Address where someone can send mail.', 'grid', '', 'n', NULL, NULL, 8, NULL, 'n', 'ltr', 'n', 'n', 'n', 'xhtml', 'y', 4, 'any', 'YTo0OntzOjEzOiJncmlkX21pbl9yb3dzIjtpOjA7czoxMzoiZ3JpZF9tYXhfcm93cyI7czowOiIiO3M6MTM6ImFsbG93X3Jlb3JkZXIiO3M6MToieSI7czoxNToidmVydGljYWxfbGF5b3V0IjtzOjE6Im4iO30=', 'n', 'y'), (5, 0, 'contact_phone', 'Contact Phone', 'Phone number someone can call.', 'text', '', 'n', NULL, NULL, 8, 256, 'n', 'ltr', 'n', 'n', 'n', 'none', 'y', 5, '', 'YTo0OntzOjEwOiJmaWVsZF9tYXhsIjtpOjI1NjtzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MDoiIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO30=', 'n', 'y'), (6, 0, 'about_image', 'About Image', 'Image for the about page.', 'grid', '', 'n', NULL, NULL, 8, NULL, 'n', 'ltr', 'n', 'n', 'n', 'xhtml', 'y', 7, 'any', 'YTo0OntzOjEzOiJncmlkX21pbl9yb3dzIjtpOjA7czoxMzoiZ3JpZF9tYXhfcm93cyI7czowOiIiO3M6MTM6ImFsbG93X3Jlb3JkZXIiO3M6MToieSI7czoxNToidmVydGljYWxfbGF5b3V0IjtzOjE6Im4iO30=', 'n', 'y'), (7, 0, 'page_content', 'Page Content', 'Content for this page.', 'textarea', '', 'n', NULL, NULL, 10, NULL, 'n', 'ltr', 'y', 'n', 'n', 'xhtml', 'y', 3, 'any', 'YTo0OntzOjI0OiJmaWVsZF9zaG93X2ZpbGVfc2VsZWN0b3IiO3M6MToibiI7czoxNDoiZGJfY29sdW1uX3R5cGUiO3M6NDoidGV4dCI7czoxODoiZmllbGRfc2hvd19zbWlsZXlzIjtzOjE6Im4iO3M6MjY6ImZpZWxkX3Nob3dfZm9ybWF0dGluZ19idG5zIjtzOjE6Im4iO30=', 'n', 'y'), (8, 0, 'blog_audio', 'Audio', 'Audio clip for this blog.', 'grid', '', 'n', NULL, NULL, 8, NULL, 'n', 'ltr', 'n', 'n', 'n', 'xhtml', 'y', 3, 'any', 'YTo0OntzOjEzOiJncmlkX21pbl9yb3dzIjtpOjA7czoxMzoiZ3JpZF9tYXhfcm93cyI7czowOiIiO3M6MTM6ImFsbG93X3Jlb3JkZXIiO3M6MToieSI7czoxNToidmVydGljYWxfbGF5b3V0IjtzOjE6Im4iO30=', 'n', 'y'), (9, 0, 'blog_image', 'Image', 'Photograph, comic, any image you like.', 'grid', '', 'n', NULL, NULL, 8, NULL, 'n', 'ltr', 'n', 'n', 'n', 'xhtml', 'y', 4, 'any', 'YTo0OntzOjEzOiJncmlkX21pbl9yb3dzIjtpOjA7czoxMzoiZ3JpZF9tYXhfcm93cyI7czowOiIiO3M6MTM6ImFsbG93X3Jlb3JkZXIiO3M6MToieSI7czoxNToidmVydGljYWxfbGF5b3V0IjtzOjE6Im4iO30=', 'n', 'y'), (10, 0, 'blog_video', 'Video', 'Video for this blog.', 'grid', '', 'n', NULL, NULL, 8, NULL, 'n', 'ltr', 'n', 'n', 'n', 'xhtml', 'y', 2, 'any', 'YTo0OntzOjEzOiJncmlkX21pbl9yb3dzIjtpOjA7czoxMzoiZ3JpZF9tYXhfcm93cyI7czowOiIiO3M6MTM6ImFsbG93X3Jlb3JkZXIiO3M6MToieSI7czoxNToidmVydGljYWxfbGF5b3V0IjtzOjE6Im4iO30=', 'n', 'y'), (11, 0, 'blog_content', 'Content', 'Content for this blog entry.', 'textarea', '', 'n', NULL, NULL, 10, NULL, 'n', 'ltr', 'y', 'n', 'n', 'xhtml', 'y', 1, 'any', 'YTo0OntzOjI0OiJmaWVsZF9zaG93X2ZpbGVfc2VsZWN0b3IiO3M6MToibiI7czoxNDoiZGJfY29sdW1uX3R5cGUiO3M6NDoidGV4dCI7czoxODoiZmllbGRfc2hvd19zbWlsZXlzIjtzOjE6Im4iO3M6MjY6ImZpZWxkX3Nob3dfZm9ybWF0dGluZ19idG5zIjtzOjE6Im4iO30=', 'n', 'y'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_field_groups_fields` -- CREATE TABLE `[[dbprefix]]channel_field_groups_fields` ( `field_id` int(6) unsigned NOT NULL, `group_id` int(4) unsigned NOT NULL, PRIMARY KEY (`field_id`,`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `[[dbprefix]]channel_field_groups_fields` -- INSERT INTO `[[dbprefix]]channel_field_groups_fields` VALUES (1, 1), (2, 1), (3, 2), (4, 2), (5, 2), (6, 3), (7, 4), (8, 5), (9, 5), (10, 5), (11, 5); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_form_settings` -- CREATE TABLE `[[dbprefix]]channel_form_settings` ( `channel_form_settings_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '0', `channel_id` int(6) unsigned NOT NULL DEFAULT '0', `default_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `allow_guest_posts` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `default_author` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`channel_form_settings_id`), KEY `site_id` (`site_id`), KEY `channel_id` (`channel_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_grid_field_4` -- CREATE TABLE `[[dbprefix]]channel_grid_field_4` ( `row_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned DEFAULT NULL, `row_order` int(10) unsigned DEFAULT NULL, `fluid_field_data_id` int(10) unsigned DEFAULT '0', `col_id_1` text COLLATE utf8mb4_unicode_ci, `col_id_2` text COLLATE utf8mb4_unicode_ci, `col_id_3` text COLLATE utf8mb4_unicode_ci, `col_id_4` text COLLATE utf8mb4_unicode_ci, `col_id_5` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`row_id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]channel_grid_field_4` -- INSERT INTO `[[dbprefix]]channel_grid_field_4` VALUES (1, 1, 0, 0, '1234 Any Street', 'Suite 2', 'Anywhere', 'ES', '12345'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_grid_field_6` -- CREATE TABLE `[[dbprefix]]channel_grid_field_6` ( `row_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned DEFAULT NULL, `row_order` int(10) unsigned DEFAULT NULL, `fluid_field_data_id` int(10) unsigned DEFAULT '0', `col_id_6` text COLLATE utf8mb4_unicode_ci, `col_id_7` text COLLATE utf8mb4_unicode_ci, `col_id_8` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`row_id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4 ; -- -- Dumping data for table `[[dbprefix]]channel_grid_field_6` -- INSERT INTO `[[dbprefix]]channel_grid_field_6` VALUES (1, 2, 0, 0, '{filedir_5}common.jpg', 'Dharmafrog, 2014', 'left'), (2, 3, 0, 0, '{filedir_5}common.jpg', 'Dharmafrog, 2014', 'right'), (3, 4, 0, 0, '{filedir_5}common.jpg', 'Dharmafrog, 2014', 'none'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_grid_field_8` -- CREATE TABLE `[[dbprefix]]channel_grid_field_8` ( `row_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned DEFAULT NULL, `row_order` int(10) unsigned DEFAULT NULL, `fluid_field_data_id` int(10) unsigned DEFAULT '0', `col_id_9` text COLLATE utf8mb4_unicode_ci, `col_id_10` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`row_id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=3 ; -- -- Dumping data for table `[[dbprefix]]channel_grid_field_8` -- INSERT INTO `[[dbprefix]]channel_grid_field_8` VALUES (1, 6, 0, 0, '164768245', 'soundcloud'), (2, 7, 0, 0, '3925868830', 'bandcamp'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_grid_field_9` -- CREATE TABLE `[[dbprefix]]channel_grid_field_9` ( `row_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned DEFAULT NULL, `row_order` int(10) unsigned DEFAULT NULL, `fluid_field_data_id` int(10) unsigned DEFAULT '0', `col_id_11` text COLLATE utf8mb4_unicode_ci, `col_id_12` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`row_id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]channel_grid_field_9` -- INSERT INTO `[[dbprefix]]channel_grid_field_9` VALUES (1, 5, 0, 0, '{filedir_4}blog.jpg', 'Dharmafrog, 2014'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_grid_field_10` -- CREATE TABLE `[[dbprefix]]channel_grid_field_10` ( `row_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned DEFAULT NULL, `row_order` int(10) unsigned DEFAULT NULL, `fluid_field_data_id` int(10) unsigned DEFAULT '0', `col_id_13` text COLLATE utf8mb4_unicode_ci, `col_id_14` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`row_id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=3 ; -- -- Dumping data for table `[[dbprefix]]channel_grid_field_10` -- INSERT INTO `[[dbprefix]]channel_grid_field_10` VALUES (1, 9, 0, 0, '113439313', 'vimeo'), (2, 11, 0, 0, 'eCNwxqP7l44', 'youtube'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_member_roles` -- CREATE TABLE `[[dbprefix]]channel_member_roles` ( `role_id` int(10) unsigned NOT NULL, `channel_id` int(6) unsigned NOT NULL, PRIMARY KEY (`role_id`,`channel_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]channel_titles` -- CREATE TABLE `[[dbprefix]]channel_titles` ( `entry_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `channel_id` int(4) unsigned NOT NULL, `author_id` int(10) unsigned NOT NULL DEFAULT '0', `forum_topic_id` int(10) unsigned DEFAULT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `url_title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `status_id` int(4) unsigned NOT NULL, `versioning_enabled` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `view_count_one` int(10) unsigned NOT NULL DEFAULT '0', `view_count_two` int(10) unsigned NOT NULL DEFAULT '0', `view_count_three` int(10) unsigned NOT NULL DEFAULT '0', `view_count_four` int(10) unsigned NOT NULL DEFAULT '0', `allow_comments` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `sticky` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `entry_date` bigint(10) NOT NULL, `year` char(4) COLLATE utf8mb4_unicode_ci NOT NULL, `month` char(2) COLLATE utf8mb4_unicode_ci NOT NULL, `day` char(3) COLLATE utf8mb4_unicode_ci NOT NULL, `expiration_date` bigint(10) NOT NULL DEFAULT '0', `comment_expiration_date` bigint(10) NOT NULL DEFAULT '0', `edit_date` bigint(14) DEFAULT NULL, `recent_comment_date` bigint(10) DEFAULT NULL, `comment_total` int(4) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`entry_id`), KEY `channel_id` (`channel_id`), KEY `author_id` (`author_id`), KEY `url_title` (`url_title`(191)), KEY `status` (`status`), KEY `entry_date` (`entry_date`), KEY `expiration_date` (`expiration_date`), KEY `site_id` (`site_id`), KEY `sticky_date_id_idx` (`sticky`,`entry_date`,`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=13 ; -- -- Dumping data for table `[[dbprefix]]channel_titles` -- INSERT INTO `[[dbprefix]]channel_titles` VALUES (1, 1, 3, 1, NULL, '[[clientip]]', 'Contact Us', 'contact-us', 'open', 1, 'n', 0, 0, 0, 0, 'y', 'n', [[timestamp]], '[[datey]]', '[[datem]]', '[[dated]]', 0, 0, [[timestamp]], NULL, 0), (2, 1, 1, 1, NULL, '[[clientip]]', 'Sub Page One', 'sub-page-one', 'open', 1, 'n', 0, 0, 0, 0, 'y', 'n', [[timestamp]], '[[datey]]', '[[datem]]', '[[dated]]', 0, 0, [[timestamp]], NULL, 0), (3, 1, 1, 1, NULL, '[[clientip]]', 'About Default Theme', 'about-default-theme', 'Default Page', 3, 'n', 0, 0, 0, 0, 'y', 'n', [[timestamp]], '[[datey]]', '[[datem]]', '[[dated]]', 0, 0, [[timestamp]], NULL, 0), (4, 1, 1, 1, NULL, '[[clientip]]', 'Sub Page Two', 'sub-page-two', 'open', 1, 'n', 0, 0, 0, 0, 'y', 'n', [[timestamp]], '[[datey]]', '[[datem]]', '[[dated]]', 0, 0, [[timestamp]], NULL, 0), (5, 1, 2, 1, NULL, '[[clientip]]', 'EEntry with large photograph', 'a-photograph-for-the-ages', 'open', 1, 'n', 0, 0, 0, 0, 'y', 'n', [[timestamp]], '[[datey]]', '[[datem]]', '[[dated]]', 0, 0, [[timestamp]], NULL, 0), (6, 1, 2, 1, NULL, '[[clientip]]', 'Entry with SoundCloud audio', 'the-one-where-we-shake-it-ff', 'open', 1, 'n', 0, 0, 0, 0, 'y', 'n', [[timestamp]], '[[datey]]', '[[datem]]', '[[dated]]', 0, 0, [[timestamp]], NULL, 0), (7, 1, 2, 1, NULL, '[[clientip]]', 'Entry with BandCamp audio, comments, and comments disabled', 'marrow-and-the-broken-bones', 'open', 1, 'n', 0, 0, 0, 0, 'n', 'n', [[timestamp]], '[[datey]]', '[[datem]]', '[[dated]]', 0, 0, [[timestamp]], [[timestamp]], 2), (8, 1, 2, 1, NULL, '[[clientip]]', 'Entry with text, and comments', 'the-hip-one', 'open', 1, 'n', 0, 0, 0, 0, 'y', 'n', [[timestamp]], '[[datey]]', '[[datem]]', '[[dated]]', 0, 0, [[timestamp]], [[timestamp]], 2), (9, 1, 2, 1, NULL, '[[clientip]]', 'Entry with vimeo video, lots of comments', 'action-comedy-how-to', 'open', 1, 'n', 0, 0, 0, 0, 'y', 'n', [[timestamp]], '[[datey]]', '[[datem]]', '[[dated]]', 0, 0, [[timestamp]], [[timestamp]], 11), (10, 1, 2, 1, NULL, '[[clientip]]', 'Entry with a lot of text, and comments disabled.', 'bacon-blog', 'open', 1, 'n', 0, 0, 0, 0, 'n', 'n', [[timestamp]], '[[datey]]', '[[datem]]', '[[dated]]', 0, 0, [[timestamp]], NULL, 0), (11, 1, 2, 1, NULL, '[[clientip]]', 'Entry with YouTube video', 'the-one-with-rope-cutting', 'open', 1, 'n', 0, 0, 0, 0, 'y', 'n', [[timestamp]], '[[datey]]', '[[datem]]', '[[dated]]', 0, 0, [[timestamp]], NULL, 0), (12, 1, 2, 1, NULL, '[[clientip]]', 'Super old entry.', 'super-old-entry', 'open', 1, 'n', 0, 0, 0, 0, 'n', 'n', [[timestamp]], '[[datey]]', '[[datem]]', '[[dated]]', 0, 0, [[timestamp]], NULL, 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]comments` -- CREATE TABLE `[[dbprefix]]comments` ( `comment_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) DEFAULT '1', `entry_id` int(10) unsigned DEFAULT '0', `channel_id` int(4) unsigned DEFAULT '1', `author_id` int(10) unsigned DEFAULT '0', `status` char(1) COLLATE utf8mb4_unicode_ci DEFAULT '0', `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(75) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(75) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `comment_date` int(10) DEFAULT NULL, `edit_date` int(10) DEFAULT NULL, `comment` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`comment_id`), KEY `entry_id_channel_id_author_id_status_site_id` (`entry_id`,`channel_id`,`author_id`,`status`,`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=16 ; -- -- Dumping data for table `[[dbprefix]]comments` -- INSERT INTO `[[dbprefix]]comments` VALUES (1, 1, 7, 2, 1, 'o', '[[admin_username]]', '[[admin_email]]', '[[softurl]]/', NULL, '127.0.0.1', [[timestamp]], NULL, 'This is a comment.\n\nfugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.'), (2, 1, 7, 2, 0, 'o', 'Quest one', 'example@example.com', '', '', '127.0.0.1', [[timestamp]], NULL, 'This is a comment from a Quest ;)\n\nfugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.'), (3, 1, 8, 2, 1, 'o', '[[admin_username]]', '[[admin_email]]', '[[softurl]]/', NULL, '127.0.0.1', [[timestamp]], NULL, 'This is an author comment.'), (4, 1, 8, 2, 0, 'o', 'Guest one', 'example@example.com', '', '', '127.0.0.1', [[timestamp]], NULL, 'This is a guest comment.'), (5, 1, 9, 2, 1, 'o', '[[admin_username]]', '[[admin_email]]', '[[softurl]]/', NULL, '127.0.0.1', [[timestamp]], NULL, 'This is a great video! Thanks for sharing!'), (6, 1, 9, 2, 1, 'o', '[[admin_username]]', '[[admin_email]]', '[[softurl]]/', NULL, '127.0.0.1', [[timestamp]], NULL, 'Woot, love it!'), (7, 1, 9, 2, 0, 'o', 'Guest one', 'example@example.com', 'http://example.com/', 'Everywhere', '127.0.0.1', [[timestamp]], NULL, 'This is a comment by a guest to the site, unregistered, with a url and a location.'), (8, 1, 9, 2, 0, 'o', 'Guest two', 'example@example.com', '', '', '127.0.0.1', [[timestamp]], NULL, 'This is a comment by an unregistered guest without a url, or a location.'), (9, 1, 9, 2, 1, 'o', '[[admin_username]]', '[[admin_email]]', '[[softurl]]/', NULL, '127.0.0.1', [[timestamp]], NULL, 'I really can''t get enough of this kind of appraisal.'), (10, 1, 9, 2, 0, 'o', 'Mr. Meanie', 'example@example.com', '', '', '127.0.0.1', [[timestamp]], NULL, 'I''m a bad person, and people should not like me, and I say troll things all the time.'), (11, 1, 9, 2, 1, 'o', '[[admin_username]]', '[[admin_email]]', '[[softurl]]/', NULL, '127.0.0.1', [[timestamp]], NULL, 'Ugh, what a troll.'), (12, 1, 9, 2, 0, 'o', 'Peter Winkle', 'peter@example.com', '', '', '127.0.0.1', [[timestamp]], NULL, 'This is a guest comment, from one Mr. Peter Winkle.'), (13, 1, 9, 2, 0, 'o', 'Fancy Falls', 'fancy@example.com', 'http://example.com', 'Fancy Factory', '127.0.0.1', [[timestamp]], NULL, 'Fancy, I do say!'), (14, 1, 9, 2, 0, 'o', 'Pauline Paxton', 'pauline@example.com', '', '', '127.0.0.1', [[timestamp]], NULL, 'Hello my name is Pauline Paxton, and I lurve Jackie Chan.'), (15, 1, 9, 2, 1, 'o', '[[admin_username]]', '[[admin_email]]', '[[softurl]]/', NULL, '127.0.0.1', [[timestamp]], NULL, 'Test'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]comment_subscriptions` -- CREATE TABLE `[[dbprefix]]comment_subscriptions` ( `subscription_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned DEFAULT NULL, `member_id` int(10) DEFAULT '0', `email` varchar(75) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `subscription_date` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_sent` char(1) COLLATE utf8mb4_unicode_ci DEFAULT 'n', `hash` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`subscription_id`), KEY `entry_id_member_id` (`entry_id`,`member_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]config` -- CREATE TABLE `[[dbprefix]]config` ( `config_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(5) unsigned NOT NULL DEFAULT '0', `key` varchar(64) NOT NULL DEFAULT '', `value` text, PRIMARY KEY (`config_id`), KEY `site_key` (`site_id`,`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=163 ; -- -- Dumping data for table `[[dbprefix]]config` -- INSERT INTO `[[dbprefix]]config` VALUES (1, 1, 'is_site_on', 'y'), (2, 1, 'base_url', '[[softurl]]/'), (3, 1, 'base_path', '[[softpath]]/'), (4, 1, 'site_index', 'index.php'), (5, 1, 'site_url', '{base_url}'), (6, 1, 'cp_url', '{base_url}admin.php'), (7, 1, 'theme_folder_url', '{base_url}themes/'), (8, 1, 'theme_folder_path', '{base_path}themes/'), (9, 1, 'webmaster_email', '[[admin_email]]'), (10, 1, 'webmaster_name', ''), (11, 1, 'channel_nomenclature', 'channel'), (12, 1, 'max_caches', '150'), (13, 1, 'captcha_url', '{base_url}images/captchas/'), (14, 1, 'captcha_path', '{base_path}images/captchas/'), (15, 1, 'captcha_font', 'y'), (16, 1, 'captcha_rand', 'y'), (17, 1, 'captcha_require_members', 'n'), (18, 1, 'require_captcha', 'n'), (19, 1, 'enable_sql_caching', 'n'), (20, 1, 'force_query_string', 'n'), (21, 1, 'show_profiler', 'n'), (22, 1, 'include_seconds', 'n'), (23, 1, 'cookie_domain', ''), (24, 1, 'cookie_path', '/'), (25, 1, 'cookie_httponly', 'y'), (26, 1, 'website_session_type', 'c'), (27, 1, 'cp_session_type', 'c'), (28, 1, 'allow_username_change', 'y'), (29, 1, 'allow_multi_logins', 'y'), (30, 1, 'password_lockout', 'y'), (31, 1, 'password_lockout_interval', '1'), (32, 1, 'require_ip_for_login', 'y'), (33, 1, 'require_ip_for_posting', 'y'), (34, 1, 'password_security_policy', 'basic'), (35, 1, 'allow_dictionary_pw', 'y'), (36, 1, 'name_of_dictionary_file', 'dictionary.txt'), (37, 1, 'xss_clean_uploads', 'y'), (38, 1, 'redirect_method', 'redirect'), (39, 1, 'deft_lang', 'english'), (40, 1, 'xml_lang', 'en'), (41, 1, 'send_headers', 'y'), (42, 1, 'gzip_output', 'n'), (43, 1, 'default_site_timezone', 'America/New_York'), (44, 1, 'date_format', '%n/%j/%Y'), (45, 1, 'time_format', '12'), (46, 1, 'week_start', 'sunday'), (47, 1, 'mail_protocol', 'mail'), (48, 1, 'email_newline', '\\n'), (49, 1, 'smtp_server', ''), (50, 1, 'smtp_username', ''), (51, 1, 'smtp_password', ''), (52, 1, 'email_smtp_crypto', 'ssl'), (53, 1, 'email_debug', 'n'), (54, 1, 'email_charset', 'utf-8'), (55, 1, 'email_batchmode', 'n'), (56, 1, 'email_batch_size', ''), (57, 1, 'mail_format', 'plain'), (58, 1, 'word_wrap', 'y'), (59, 1, 'email_console_timelock', '5'), (60, 1, 'log_email_console_msgs', 'y'), (61, 1, 'log_search_terms', 'y'), (62, 1, 'deny_duplicate_data', 'y'), (63, 1, 'redirect_submitted_links', 'n'), (64, 1, 'enable_censoring', 'n'), (65, 1, 'censored_words', ''), (66, 1, 'censor_replacement', ''), (67, 1, 'banned_ips', ''), (68, 1, 'banned_emails', ''), (69, 1, 'banned_usernames', ''), (70, 1, 'banned_screen_names', ''), (71, 1, 'ban_action', 'restrict'), (72, 1, 'ban_message', 'This site is currently unavailable'), (73, 1, 'ban_destination', 'http://www.yahoo.com/'), (74, 1, 'enable_emoticons', 'y'), (75, 1, 'emoticon_url', '{base_url}images/smileys/'), (76, 1, 'recount_batch_total', '1000'), (77, 1, 'new_version_check', 'y'), (78, 1, 'enable_throttling', 'n'), (79, 1, 'banish_masked_ips', 'y'), (80, 1, 'max_page_loads', '10'), (81, 1, 'time_interval', '8'), (82, 1, 'lockout_time', '30'), (83, 1, 'banishment_type', 'message'), (84, 1, 'banishment_url', ''), (85, 1, 'banishment_message', 'You have exceeded the allowed page load frequency.'), (86, 1, 'enable_search_log', 'y'), (87, 1, 'max_logged_searches', '500'), (88, 1, 'un_min_len', '4'), (89, 1, 'pw_min_len', '5'), (90, 1, 'allow_member_registration', 'n'), (91, 1, 'allow_member_localization', 'y'), (92, 1, 'req_mbr_activation', 'email'), (93, 1, 'registration_auto_login', 'y'), (94, 1, 'activation_auto_login', 'n'), (95, 1, 'activation_redirect', ''), (96, 1, 'new_member_notification', 'n'), (97, 1, 'mbr_notification_emails', ''), (98, 1, 'require_terms_of_service', 'y'), (99, 1, 'default_primary_role', '5'), (100, 1, 'profile_trigger', 'member[[timestamp]]'), (101, 1, 'member_theme', 'default'), (102, 1, 'avatar_url', '{base_url}images/avatars/'), (103, 1, 'avatar_path', '{base_path}images/avatars/'), (104, 1, 'avatar_max_width', '100'), (105, 1, 'avatar_max_height', '100'), (106, 1, 'avatar_max_kb', '50'), (107, 1, 'enable_photos', 'n'), (108, 1, 'photo_url', '{base_url}images/member_photos/'), (109, 1, 'photo_path', '/'), (110, 1, 'photo_max_width', '100'), (111, 1, 'photo_max_height', '100'), (112, 1, 'photo_max_kb', '50'), (113, 1, 'allow_signatures', 'y'), (114, 1, 'sig_maxlength', '500'), (115, 1, 'sig_allow_img_hotlink', 'n'), (116, 1, 'sig_allow_img_upload', 'n'), (117, 1, 'sig_img_url', '{base_url}images/signature_attachments/'), (118, 1, 'sig_img_path', '{base_path}images/signature_attachments/'), (119, 1, 'sig_img_max_width', '480'), (120, 1, 'sig_img_max_height', '80'), (121, 1, 'sig_img_max_kb', '30'), (122, 1, 'prv_msg_enabled', 'y'), (123, 1, 'prv_msg_allow_attachments', 'y'), (124, 1, 'prv_msg_upload_path', '{base_path}images/pm_attachments/'), (125, 1, 'prv_msg_max_attachments', '3'), (126, 1, 'prv_msg_attach_maxsize', '250'), (127, 1, 'prv_msg_attach_total', '100'), (128, 1, 'prv_msg_html_format', 'safe'), (129, 1, 'prv_msg_auto_links', 'y'), (130, 1, 'prv_msg_max_chars', '6000'), (131, 1, 'memberlist_order_by', 'member_id'), (132, 1, 'memberlist_sort_order', 'desc'), (133, 1, 'memberlist_row_limit', '20'), (134, 1, 'site_404', 'home/404'), (135, 1, 'save_tmpl_revisions', 'n'), (136, 1, 'max_tmpl_revisions', '5'), (137, 1, 'strict_urls', 'y'), (138, 1, 'enable_template_routes', 'y'), (139, 1, 'image_resize_protocol', 'gd2'), (140, 1, 'image_library_path', ''), (141, 1, 'word_separator', 'dash'), (142, 1, 'use_category_name', 'n'), (143, 1, 'reserved_category_word', 'category'), (144, 1, 'auto_convert_high_ascii', 'n'), (145, 1, 'new_posts_clear_caches', 'y'), (146, 1, 'auto_assign_cat_parents', 'y'), (147, 0, 'cache_driver', 'file'), (148, 0, 'cookie_prefix', ''), (149, 0, 'debug', '1'), (150, 0, 'file_manager_compatibility_mode', 'n'), (151, 0, 'is_system_on', 'y'), (152, 0, 'cli_enabled', 'y'), (153, 0, 'legacy_member_data', 'n'), (154, 0, 'legacy_channel_data', 'n'), (155, 0, 'legacy_category_field_data', 'n'), (156, 0, 'enable_dock', 'y'), (157, 0, 'enable_frontedit', 'y'), (158, 0, 'automatic_frontedit_links', 'y'), (159, 0, 'enable_mfa', 'y'), (160, 0, 'autosave_interval_seconds', '10'), (161, 1, 'save_tmpl_files', 'y'), (162, 1, 'enable_comments', 'y'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]consents` -- CREATE TABLE `[[dbprefix]]consents` ( `consent_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `consent_request_id` int(10) unsigned NOT NULL, `consent_request_version_id` int(10) unsigned NOT NULL, `member_id` int(10) unsigned NOT NULL, `request_copy` mediumtext COLLATE utf8mb4_unicode_ci, `request_format` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `consent_given` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `consent_given_via` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `expiration_date` bigint(10) DEFAULT NULL, `response_date` bigint(10) DEFAULT NULL, PRIMARY KEY (`consent_id`), KEY `consent_request_version_id` (`consent_request_version_id`), KEY `member_id` (`member_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]consent_audit_log` -- CREATE TABLE `[[dbprefix]]consent_audit_log` ( `consent_audit_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `consent_request_id` int(10) unsigned NOT NULL, `consent_request_version_id` int(10) unsigned DEFAULT NULL, `member_id` int(10) unsigned NOT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `user_agent` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `action` text COLLATE utf8mb4_unicode_ci NOT NULL, `log_date` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`consent_audit_id`), KEY `consent_request_id` (`consent_request_id`), KEY `consent_request_version_id` (`consent_request_version_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]consent_requests` -- CREATE TABLE `[[dbprefix]]consent_requests` ( `consent_request_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `consent_request_version_id` int(10) unsigned DEFAULT NULL, `user_created` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `consent_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `double_opt_in` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `retention_period` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`consent_request_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4 ; -- -- Dumping data for table `[[dbprefix]]consent_requests` -- INSERT INTO `[[dbprefix]]consent_requests` VALUES (1, 1, 'n', 'Functionality Cookies', 'ee:cookies_functionality', 'n', NULL), (2, 2, 'n', 'Performance Cookies', 'ee:cookies_performance', 'n', NULL), (3, 3, 'n', 'Targeting Cookies', 'ee:cookies_targeting', 'n', NULL); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]consent_request_versions` -- CREATE TABLE `[[dbprefix]]consent_request_versions` ( `consent_request_version_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `consent_request_id` int(10) unsigned NOT NULL, `request` mediumtext COLLATE utf8mb4_unicode_ci, `request_format` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `create_date` bigint(10) NOT NULL DEFAULT '0', `author_id` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`consent_request_version_id`), KEY `consent_request_id` (`consent_request_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4 ; -- -- Dumping data for table `[[dbprefix]]consent_request_versions` -- INSERT INTO `[[dbprefix]]consent_request_versions` VALUES (1, 1, 'These cookies help us personalize content and functionality for you, including remembering changes you have made to parts of the website that you can customize, or selections for services made on previous visits. If you do not allow these cookies, some portions of our website may be less friendly and easy to use, forcing you to enter content or set your preferences on each visit.', 'none', [[timestamp]], 0), (2, 2, 'These cookies allow us measure how visitors use our website, which pages are popular, and what our traffic sources are. This helps us improve how our website works and make it easier for all visitors to find what they are looking for. The information is aggregated and anonymous, and cannot be used to identify you. If you do not allow these cookies, we will be unable to use your visits to our website to help make improvements.', 'none', [[timestamp]], 0), (3, 3, 'These cookies are usually placed by third-party advertising networks, which may use information about your website visits to develop a profile of your interests. This information may be shared with other advertisers and/or websites to deliver more relevant advertising to you across multiple websites. If you do not allow these cookies, visits to this website will not be shared with advertising partners and will not contribute to targeted advertising on other websites.', 'none', [[timestamp]], 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]consent_request_version_cookies` -- CREATE TABLE `[[dbprefix]]consent_request_version_cookies` ( `consent_request_version_cookies_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `consent_request_version_id` int(10) unsigned NOT NULL, `cookie_id` int(10) unsigned NOT NULL, PRIMARY KEY (`consent_request_version_cookies_id`), KEY `consent_request_version_cookies` (`consent_request_version_id`,`cookie_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]content_types` -- CREATE TABLE `[[dbprefix]]content_types` ( `content_type_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`content_type_id`), KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=3 ; -- -- Dumping data for table `[[dbprefix]]content_types` -- INSERT INTO `[[dbprefix]]content_types` VALUES (2, 'channel'), (1, 'grid'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cookie_settings` -- CREATE TABLE `[[dbprefix]]cookie_settings` ( `cookie_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `cookie_provider` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `cookie_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `cookie_lifetime` int(10) unsigned DEFAULT NULL, `cookie_enforced_lifetime` int(10) unsigned DEFAULT NULL, `cookie_title` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `cookie_description` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`cookie_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=22 ; -- -- Dumping data for table `[[dbprefix]]cookie_settings` -- INSERT INTO `[[dbprefix]]cookie_settings` VALUES (1, 'ee', 'csrf_token', 7200, NULL, 'CSRF Token', 'A security cookie used to identify the user and prevent Cross Site Request Forgery attacks.'), (2, 'ee', 'flash', NULL, NULL, 'Flash data', 'User feedback messages, encrypted for security.'), (3, 'ee', 'remember', NULL, NULL, 'Remember Me', 'Determines whether a user is automatically logged in upon visiting the site.'), (4, 'ee', 'sessionid', NULL, NULL, 'Session ID', 'Session id, used to associate a logged in user with their data.'), (5, 'ee', 'visitor_consents', NULL, NULL, 'Visitor Consents', 'Saves responses to Consent requests for non-logged in visitors'), (6, 'ee', 'last_activity', NULL, NULL, 'Last Activity', 'Records the time of the last page load. Used in in calculating active sessions.'), (7, 'ee', 'last_visit', NULL, NULL, 'Last Visit', 'Date of the user’s last visit, based on the last_activity cookie. Can be shown as a statistic for members and used by forum and comments to show unread topics for both members and guests.'), (8, 'ee', 'anon', NULL, NULL, 'Anonymize', 'Determines whether the user’s username is displayed in the list of currently logged in members.'), (9, 'ee', 'tracker', NULL, NULL, 'Tracker', 'Contains the last 5 pages viewed, encrypted for security. Typically used for form or error message returns.'), (10, 'cp', 'viewtype', NULL, NULL, 'Filemanager View Type', 'Determines View Type to be used in Filemanager (table or thumbs view)'), (11, 'cp', 'cp_last_site_id', NULL, NULL, 'CP Last Site ID', 'MSM cookie indicating the last site accessed in the Control Panel.'), (12, 'cp', 'ee_cp_viewmode', NULL, NULL, 'CP View Mode', 'Determines view mode for the Control Panel.'), (13, 'cp', 'secondary_sidebar', NULL, NULL, 'Secondary Sidebar State', 'Determines whether secondary navigation sidebar in the Control Panel should be collapsed for each corresponding section.'), (14, 'cp', 'collapsed_nav', NULL, NULL, 'Collapsed Navigation', 'Determines whether navigation sidebar in the Control Panel should be collapsed.'), (15, 'comment', 'my_email', NULL, NULL, 'My email', 'Email address specified when posting a comment.'), (16, 'comment', 'my_location', NULL, NULL, 'My location', 'Location specified when posting a comment.'), (17, 'comment', 'my_name', NULL, NULL, 'My name', 'Name specified when posting a comment.'), (18, 'comment', 'my_url', NULL, NULL, 'My URL', 'URL specified when posting a comment.'), (19, 'comment', 'notify_me', NULL, NULL, 'Notify me', 'If set to ‘yes’, notifications will be sent to the saved email address when new comments are made.'), (20, 'comment', 'save_info', NULL, NULL, 'Save info', 'If set to ‘yes’, allows additional cookies (my_email, my_location, my_name, my_url) to store guest user information for use when filling out comment forms. This cookie is only set if you submit a comment.'), (21, 'pro', 'frontedit', NULL, NULL, 'Front-end editing', 'Determines whether ExpressioEngine front-end editing features should be enabled.'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]cp_log` -- CREATE TABLE `[[dbprefix]]cp_log` ( `id` int(10) NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `member_id` int(10) unsigned NOT NULL, `username` varchar(75) COLLATE utf8mb4_unicode_ci NOT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `act_date` bigint(10) NOT NULL, `action` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]dashboard_layouts` -- CREATE TABLE `[[dbprefix]]dashboard_layouts` ( `layout_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `member_id` int(10) unsigned DEFAULT NULL, `role_id` int(10) unsigned DEFAULT NULL, `order` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`layout_id`), KEY `member_id` (`member_id`), KEY `role_id` (`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]dashboard_layout_widgets` -- CREATE TABLE `[[dbprefix]]dashboard_layout_widgets` ( `dashboard_layout_widgets_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `layout_id` int(10) unsigned NOT NULL, `widget_id` int(10) unsigned NOT NULL, PRIMARY KEY (`dashboard_layout_widgets_id`), KEY `layouts_widgets` (`layout_id`,`widget_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]dashboard_widgets` -- CREATE TABLE `[[dbprefix]]dashboard_widgets` ( `widget_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `widget_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `widget_data` mediumtext COLLATE utf8mb4_unicode_ci, `widget_type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `widget_source` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `widget_file` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`widget_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=7 ; -- -- Dumping data for table `[[dbprefix]]dashboard_widgets` -- INSERT INTO `[[dbprefix]]dashboard_widgets` VALUES (1, NULL, NULL, 'php', 'pro', 'comments'), (2, NULL, NULL, 'php', 'pro', 'eecms_news'), (3, NULL, NULL, 'php', 'pro', 'members'), (4, NULL, NULL, 'php', 'pro', 'recent_entries'), (5, NULL, NULL, 'php', 'pro', 'recent_templates'), (6, NULL, NULL, 'html', 'pro', 'support'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]developer_log` -- CREATE TABLE `[[dbprefix]]developer_log` ( `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `timestamp` int(10) unsigned NOT NULL, `viewed` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `description` text COLLATE utf8mb4_unicode_ci, `function` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `line` int(10) unsigned DEFAULT NULL, `file` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `deprecated_since` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `use_instead` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template_id` int(10) unsigned NOT NULL DEFAULT '0', `template_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template_group` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `addon_module` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `addon_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `snippets` text COLLATE utf8mb4_unicode_ci, `hash` char(32) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`log_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]docks` -- CREATE TABLE `[[dbprefix]]docks` ( `dock_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`dock_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]docks` -- INSERT INTO `[[dbprefix]]docks` VALUES (1, 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]dock_prolets` -- CREATE TABLE `[[dbprefix]]dock_prolets` ( `dock_prolets_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `dock_id` int(10) unsigned NOT NULL, `prolet_id` int(10) unsigned NOT NULL, PRIMARY KEY (`dock_prolets_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=3 ; -- -- Dumping data for table `[[dbprefix]]dock_prolets` -- INSERT INTO `[[dbprefix]]dock_prolets` VALUES (1, 1, 1), (2, 1, 2); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]email_cache` -- CREATE TABLE `[[dbprefix]]email_cache` ( `cache_id` int(6) unsigned NOT NULL AUTO_INCREMENT, `cache_date` bigint(10) unsigned NOT NULL DEFAULT '0', `total_sent` int(6) unsigned NOT NULL, `from_name` varchar(70) COLLATE utf8mb4_unicode_ci NOT NULL, `from_email` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL, `recipient` text COLLATE utf8mb4_unicode_ci NOT NULL, `cc` text COLLATE utf8mb4_unicode_ci NOT NULL, `bcc` text COLLATE utf8mb4_unicode_ci NOT NULL, `recipient_array` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `message` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `plaintext_alt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `mailtype` varchar(6) COLLATE utf8mb4_unicode_ci NOT NULL, `text_fmt` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, `wordwrap` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `attachments` mediumtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`cache_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]email_cache_mg` -- CREATE TABLE `[[dbprefix]]email_cache_mg` ( `cache_id` int(6) unsigned NOT NULL, `role_id` int(10) NOT NULL, PRIMARY KEY (`cache_id`,`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]email_cache_ml` -- CREATE TABLE `[[dbprefix]]email_cache_ml` ( `cache_id` int(6) unsigned NOT NULL, `list_id` smallint(4) NOT NULL, PRIMARY KEY (`cache_id`,`list_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]email_console_cache` -- CREATE TABLE `[[dbprefix]]email_console_cache` ( `cache_id` int(6) unsigned NOT NULL AUTO_INCREMENT, `cache_date` bigint(10) unsigned NOT NULL DEFAULT '0', `member_id` int(10) unsigned NOT NULL, `member_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `recipient` varchar(75) COLLATE utf8mb4_unicode_ci NOT NULL, `recipient_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `message` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`cache_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]email_tracker` -- CREATE TABLE `[[dbprefix]]email_tracker` ( `email_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `email_date` int(10) unsigned NOT NULL DEFAULT '0', `sender_ip` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, `sender_email` varchar(75) COLLATE utf8mb4_unicode_ci NOT NULL, `sender_username` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `number_recipients` int(4) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`email_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]entry_manager_views` -- CREATE TABLE `[[dbprefix]]entry_manager_views` ( `view_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `channel_id` int(6) unsigned NOT NULL, `member_id` int(10) unsigned NOT NULL, `name` varchar(128) NOT NULL DEFAULT '', `columns` text NOT NULL, PRIMARY KEY (`view_id`), KEY `channel_id_member_id` (`channel_id`,`member_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]entry_versioning` -- CREATE TABLE `[[dbprefix]]entry_versioning` ( `version_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(10) unsigned NOT NULL, `channel_id` int(4) unsigned NOT NULL, `author_id` int(10) unsigned NOT NULL, `version_date` bigint(10) NOT NULL, `version_data` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`version_id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]extensions` -- CREATE TABLE `[[dbprefix]]extensions` ( `extension_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `class` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `method` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `hook` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `settings` text COLLATE utf8mb4_unicode_ci NOT NULL, `priority` int(2) NOT NULL DEFAULT '10', `version` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `enabled` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', PRIMARY KEY (`extension_id`), KEY `enabled` (`enabled`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]extensions` -- INSERT INTO `[[dbprefix]]extensions` VALUES (1, 'Comment_ext', 'addCommentMenu', 'cp_custom_menu', 'a:0:{}', 10, '2.3.3', 'y'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]fieldtypes` -- CREATE TABLE `[[dbprefix]]fieldtypes` ( `fieldtype_id` int(4) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `version` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL, `settings` text COLLATE utf8mb4_unicode_ci, `has_global_settings` char(1) COLLATE utf8mb4_unicode_ci DEFAULT 'n', PRIMARY KEY (`fieldtype_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=25 ; -- -- Dumping data for table `[[dbprefix]]fieldtypes` -- INSERT INTO `[[dbprefix]]fieldtypes` VALUES (1, 'select', '1.0.0', 'YTowOnt9', 'n'), (2, 'text', '1.0.0', 'YTowOnt9', 'n'), (3, 'number', '1.0.0', 'YTowOnt9', 'n'), (4, 'textarea', '1.0.0', 'YTowOnt9', 'n'), (5, 'date', '1.0.0', 'YTowOnt9', 'n'), (6, 'duration', '1.0.0', 'YTowOnt9', 'n'), (7, 'email_address', '1.0.0', 'YTowOnt9', 'n'), (8, 'file', '1.1.0', 'YTowOnt9', 'n'), (9, 'fluid_field', '1.0.0', 'YTowOnt9', 'n'), (10, 'grid', '1.0.0', 'YTowOnt9', 'n'), (11, 'file_grid', '1.0.0', 'YTowOnt9', 'n'), (12, 'multi_select', '1.0.0', 'YTowOnt9', 'n'), (13, 'checkboxes', '1.0.0', 'YTowOnt9', 'n'), (14, 'radio', '1.0.0', 'YTowOnt9', 'n'), (15, 'relationship', '1.0.0', 'YTowOnt9', 'n'), (16, 'rte', '2.2.0', 'YTowOnt9', 'n'), (17, 'slider', '1.0.0', 'YTowOnt9', 'n'), (18, 'range_slider', '1.0.0', 'YTowOnt9', 'n'), (19, 'toggle', '1.0.0', 'YTowOnt9', 'n'), (20, 'url', '1.0.0', 'YTowOnt9', 'n'), (21, 'colorpicker', '1.0.0', 'YTowOnt9', 'n'), (22, 'selectable_buttons', '1.0.0', 'YTowOnt9', 'n'), (23, 'notes', '1.0.0', 'YTowOnt9', 'n'), (24, 'member', '2.4.0', 'YTowOnt9', 'n'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]field_conditions` -- CREATE TABLE `[[dbprefix]]field_conditions` ( `condition_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `condition_set_id` int(10) unsigned NOT NULL, `condition_field_id` int(10) unsigned NOT NULL, `evaluation_rule` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`condition_id`), KEY `condition_set_id` (`condition_set_id`), KEY `condition_field_id` (`condition_field_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]field_condition_sets` -- CREATE TABLE `[[dbprefix]]field_condition_sets` ( `condition_set_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `match` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all', `order` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`condition_set_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]field_condition_sets_channel_fields` -- CREATE TABLE `[[dbprefix]]field_condition_sets_channel_fields` ( `condition_set_id` int(10) unsigned NOT NULL, `field_id` int(10) unsigned NOT NULL, PRIMARY KEY (`condition_set_id`,`field_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]field_groups` -- CREATE TABLE `[[dbprefix]]field_groups` ( `group_id` int(4) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned DEFAULT '1', `group_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `short_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `group_description` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`group_id`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=6 ; -- -- Dumping data for table `[[dbprefix]]field_groups` -- INSERT INTO `[[dbprefix]]field_groups` VALUES (1, 0, 'seo', 'field_group_seo', NULL), (2, 0, 'contact', 'field_group_contact', NULL), (3, 0, 'about', 'field_group_about', NULL), (4, 0, 'common', 'field_group_common', NULL), (5, 0, 'blog', 'field_group_blog', NULL); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]files` -- CREATE TABLE `[[dbprefix]]files` ( `file_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `model_type` enum('File','Directory') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'File', `site_id` int(4) unsigned DEFAULT '1', `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `upload_location_id` int(4) unsigned DEFAULT '0', `directory_id` int(10) unsigned DEFAULT '0', `mime_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_size` int(10) DEFAULT '0', `description` text COLLATE utf8mb4_unicode_ci, `credit` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `uploaded_by_member_id` int(10) unsigned DEFAULT '0', `upload_date` bigint(10) DEFAULT NULL, `modified_by_member_id` int(10) unsigned DEFAULT '0', `modified_date` bigint(10) DEFAULT NULL, `file_hw_original` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `total_records` int(10) unsigned DEFAULT '0', PRIMARY KEY (`file_id`), KEY `model_type` (`model_type`), KEY `upload_location_id` (`upload_location_id`), KEY `directory_id` (`directory_id`), KEY `file_type` (`file_type`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=7 ; -- -- Dumping data for table `[[dbprefix]]files` -- INSERT INTO `[[dbprefix]]files` VALUES (1, 'File', 1, 'blog.jpg', 4, 0, 'image/jpeg', 'img', 'blog.jpg', 339111, NULL, NULL, NULL, 0, [[timestamp]], 0, [[timestamp]], '900 1200', 0), (2, 'File', 1, 'common.jpg', 5, 0, 'image/jpeg', 'img', 'common.jpg', 339111, NULL, NULL, NULL, 0, [[timestamp]], 0, [[timestamp]], '900 1200', 0), (3, 'File', 1, 'lake.jpg', 6, 0, 'image/jpeg', 'img', 'lake.jpg', 286878, NULL, NULL, NULL, 0, [[timestamp]], 0, [[timestamp]], '502 1200', 0), (4, 'File', 1, 'ocean.jpg', 6, 0, 'image/jpeg', 'img', 'ocean.jpg', 111529, NULL, NULL, NULL, 0, [[timestamp]], 0, [[timestamp]], '502 1200', 0), (5, 'File', 1, 'path.jpg', 6, 0, 'image/jpeg', 'img', 'path.jpg', 289200, NULL, NULL, NULL, 0, [[timestamp]], 0, [[timestamp]], '502 1200', 0), (6, 'File', 1, 'sky.jpg', 6, 0, 'image/jpeg', 'img', 'sky.jpg', 62326, NULL, NULL, NULL, 0, [[timestamp]], 0, [[timestamp]], '502 1200', 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]file_categories` -- CREATE TABLE `[[dbprefix]]file_categories` ( `file_id` int(10) unsigned NOT NULL, `cat_id` int(10) unsigned NOT NULL, `sort` int(10) unsigned DEFAULT '0', `is_cover` char(1) COLLATE utf8mb4_unicode_ci DEFAULT 'n', PRIMARY KEY (`file_id`,`cat_id`), KEY `cat_id` (`cat_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]file_data` -- CREATE TABLE `[[dbprefix]]file_data` ( `file_id` int(10) unsigned NOT NULL, PRIMARY KEY (`file_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]file_dimensions` -- CREATE TABLE `[[dbprefix]]file_dimensions` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `upload_location_id` int(4) unsigned DEFAULT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '', `short_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '', `resize_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT '', `width` int(10) DEFAULT '0', `height` int(10) DEFAULT '0', `quality` tinyint(1) unsigned DEFAULT '90', `watermark_id` int(4) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `upload_location_id` (`upload_location_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]file_manager_views` -- CREATE TABLE `[[dbprefix]]file_manager_views` ( `view_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `viewtype` varchar(10) NOT NULL DEFAULT 'list', `upload_id` int(6) unsigned NOT NULL, `member_id` int(10) unsigned NOT NULL, `name` varchar(128) NOT NULL DEFAULT '', `columns` text NOT NULL, PRIMARY KEY (`view_id`), KEY `viewtype_upload_id_member_id` (`viewtype`,`upload_id`,`member_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]file_usage` -- CREATE TABLE `[[dbprefix]]file_usage` ( `file_usage_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `file_id` int(10) unsigned NOT NULL, `entry_id` int(10) unsigned NOT NULL DEFAULT '0', `cat_id` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`file_usage_id`), KEY `file_id` (`file_id`), KEY `entry_id` (`entry_id`), KEY `cat_id` (`cat_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]file_watermarks` -- CREATE TABLE `[[dbprefix]]file_watermarks` ( `wm_id` int(4) unsigned NOT NULL AUTO_INCREMENT, `wm_name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `wm_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'text', `wm_image_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `wm_test_image_path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `wm_use_font` char(1) COLLATE utf8mb4_unicode_ci DEFAULT 'y', `wm_font` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `wm_font_size` int(3) unsigned DEFAULT NULL, `wm_text` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `wm_vrt_alignment` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'top', `wm_hor_alignment` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'left', `wm_padding` int(3) unsigned DEFAULT NULL, `wm_opacity` int(3) unsigned DEFAULT NULL, `wm_hor_offset` int(4) unsigned DEFAULT NULL, `wm_vrt_offset` int(4) unsigned DEFAULT NULL, `wm_x_transp` int(4) DEFAULT NULL, `wm_y_transp` int(4) DEFAULT NULL, `wm_font_color` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `wm_use_drop_shadow` char(1) COLLATE utf8mb4_unicode_ci DEFAULT 'y', `wm_shadow_distance` int(3) unsigned DEFAULT NULL, `wm_shadow_color` varchar(7) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`wm_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]fluid_field_data` -- CREATE TABLE `[[dbprefix]]fluid_field_data` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `fluid_field_id` int(11) unsigned NOT NULL, `entry_id` int(11) unsigned NOT NULL, `field_id` int(11) unsigned NOT NULL, `field_data_id` int(11) unsigned NOT NULL, `field_group_id` int(11) unsigned DEFAULT NULL, `order` int(5) unsigned NOT NULL DEFAULT '0', `group` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `fluid_field_id_entry_id` (`fluid_field_id`,`entry_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]global_variables` -- CREATE TABLE `[[dbprefix]]global_variables` ( `variable_id` int(6) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `variable_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `variable_data` text COLLATE utf8mb4_unicode_ci NOT NULL, `edit_date` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`variable_id`), KEY `variable_name` (`variable_name`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=7 ; -- -- Dumping data for table `[[dbprefix]]global_variables` -- INSERT INTO `[[dbprefix]]global_variables` VALUES (1, 0, 'gv_comment_ignore', 'You are ignoring', [[timestamp]]), (2, 0, 'gv_sep', ' / ', [[timestamp]]), (3, 0, 'gv_comment_disabled', 'Commenting for this entry is disabled.', [[timestamp]]), (4, 0, 'gv_entries_none', 'There are no entries in this channel.', [[timestamp]]), (5, 0, 'gv_comment_expired', 'Commenting for this entry has expired.', [[timestamp]]), (6, 0, 'gv_comment_none', 'There are no comments on this entry.', [[timestamp]]); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]grid_columns` -- CREATE TABLE `[[dbprefix]]grid_columns` ( `col_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `field_id` int(10) unsigned DEFAULT NULL, `content_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `col_order` int(3) unsigned DEFAULT NULL, `col_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `col_label` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `col_name` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `col_instructions` text COLLATE utf8mb4_unicode_ci, `col_required` char(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `col_search` char(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `col_width` int(3) unsigned DEFAULT NULL, `col_settings` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`col_id`), KEY `field_id` (`field_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=15 ; -- -- Dumping data for table `[[dbprefix]]grid_columns` -- INSERT INTO `[[dbprefix]]grid_columns` VALUES (1, 4, 'channel', 0, 'text', 'Street', 'street', 'Street address', 'n', 'n', 0, '{"field_fmt":"none","field_content_type":"all","field_text_direction":"ltr","field_maxl":"256","field_required":"n"}'), (2, 4, 'channel', 1, 'text', 'Street 2', 'street_2', 'Street address continued, e.g. Suite 2', 'n', 'n', 0, '{"field_fmt":"none","field_content_type":"all","field_text_direction":"ltr","field_maxl":"256","field_required":"n"}'), (3, 4, 'channel', 2, 'text', 'City', 'city', '', 'n', 'n', 0, '{"field_fmt":"none","field_content_type":"all","field_text_direction":"ltr","field_maxl":"256","field_required":"n"}'), (4, 4, 'channel', 3, 'text', 'State', 'state', '', 'n', 'n', 0, '{"field_fmt":"none","field_content_type":"all","field_text_direction":"ltr","field_maxl":"256","field_required":"n"}'), (5, 4, 'channel', 4, 'text', 'ZIP', 'zip', '', 'n', 'n', 0, '{"field_fmt":"none","field_content_type":"all","field_text_direction":"ltr","field_maxl":"256","field_required":"n"}'), (6, 6, 'channel', 0, 'file', 'Image', 'image', 'Upload the image you want to use.', 'n', 'n', 0, '{"field_content_type":"image","allowed_directories":"all","show_existing":"y","num_existing":"50","field_fmt":"none","field_required":"n"}'), (7, 6, 'channel', 1, 'text', 'Caption', 'caption', 'Credit and copyright for this image.', 'n', 'n', 0, '{"field_fmt":"none","field_content_type":"all","field_text_direction":"ltr","field_maxl":"256","field_required":"n"}'), (8, 6, 'channel', 2, 'select', 'Alignment?', 'align', 'Align this image ot the left or right?', 'n', 'n', 0, '{"field_fmt":"none","field_pre_populate":"n","field_pre_channel_id":"0","field_pre_field_id":"0","field_list_items":"none\\nleft\\nright","value_label_pairs":[],"field_required":"n"}'), (9, 8, 'channel', 0, 'text', 'ID', 'id', 'Audio ID, i.e. 177363559', 'n', 'y', 0, '{"field_fmt":"none","field_content_type":"all","field_text_direction":"ltr","field_maxl":"256","field_required":"n"}'), (10, 8, 'channel', 1, 'select', 'Type', 'type', 'Type of audio, choose one.', 'n', 'n', 0, '{"field_fmt":"none","field_pre_populate":"n","field_pre_channel_id":"0","field_pre_field_id":"0","field_list_items":"soundcloud\\nbandcamp","value_label_pairs":[],"field_required":"n"}'), (11, 9, 'channel', 0, 'file', 'Image', 'image', 'Upload the image you want to use.', 'n', 'y', 0, '{"field_content_type":"image","allowed_directories":"all","show_existing":"y","num_existing":"50","field_fmt":"none","field_required":"n"}'), (12, 9, 'channel', 1, 'text', 'Caption', 'caption', 'Credit and copyright for this image.', 'n', 'y', 0, '{"field_fmt":"none","field_content_type":"all","field_text_direction":"ltr","field_maxl":"256","field_required":"n"}'), (13, 10, 'channel', 0, 'text', 'ID', 'id', 'Video ID, i.e. 8OcydG0RiqI', 'n', 'y', 0, '{"field_fmt":"none","field_content_type":"all","field_text_direction":"ltr","field_maxl":"256","field_required":"n"}'), (14, 10, 'channel', 1, 'select', 'Type', 'type', 'Type of video, choose one.', 'n', 'y', 0, '{"field_fmt":"none","field_pre_populate":"n","field_pre_channel_id":"0","field_pre_field_id":"0","field_list_items":"youtube\\nvimeo","value_label_pairs":[],"field_required":"n"}'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]html_buttons` -- CREATE TABLE `[[dbprefix]]html_buttons` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `member_id` int(10) NOT NULL DEFAULT '0', `tag_name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `tag_open` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `tag_close` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `accesskey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `tag_order` int(3) unsigned NOT NULL, `tag_row` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `classname` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=6 ; -- -- Dumping data for table `[[dbprefix]]html_buttons` -- INSERT INTO `[[dbprefix]]html_buttons` VALUES (1, 1, 0, 'html_btn_bold', '', '', 'b', 1, '1', 'html-bold'), (2, 1, 0, 'html_btn_italic', '', '', 'i', 2, '1', 'html-italic'), (3, 1, 0, 'html_btn_blockquote', '
', '
', 'q', 3, '1', 'html-quote'), (4, 1, 0, 'html_btn_anchor', '', '', 'k', 4, '1', 'html-link'), (5, 1, 0, 'html_btn_picture', '', '', '', 5, '1', 'html-upload'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]layout_publish` -- CREATE TABLE `[[dbprefix]]layout_publish` ( `layout_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `channel_id` int(4) unsigned NOT NULL DEFAULT '0', `layout_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `field_layout` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`layout_id`), KEY `site_id` (`site_id`), KEY `channel_id` (`channel_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]layout_publish_member_roles` -- CREATE TABLE `[[dbprefix]]layout_publish_member_roles` ( `layout_id` int(10) unsigned NOT NULL, `role_id` int(10) unsigned NOT NULL, PRIMARY KEY (`layout_id`,`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]members` -- CREATE TABLE `[[dbprefix]]members` ( `member_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `role_id` int(10) NOT NULL DEFAULT '0', `pending_role_id` int(10) NOT NULL DEFAULT '0', `username` varchar(75) COLLATE utf8mb4_unicode_ci NOT NULL, `screen_name` varchar(75) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `salt` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `unique_id` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, `crypt_key` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `backup_mfa_code` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `authcode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL, `signature` text COLLATE utf8mb4_unicode_ci, `avatar_filename` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avatar_width` int(4) unsigned DEFAULT NULL, `avatar_height` int(4) unsigned DEFAULT NULL, `photo_filename` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo_width` int(4) unsigned DEFAULT NULL, `photo_height` int(4) unsigned DEFAULT NULL, `sig_img_filename` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sig_img_width` int(4) unsigned DEFAULT NULL, `sig_img_height` int(4) unsigned DEFAULT NULL, `ignore_list` text COLLATE utf8mb4_unicode_ci, `private_messages` int(4) unsigned NOT NULL DEFAULT '0', `accept_messages` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `last_view_bulletins` int(10) NOT NULL DEFAULT '0', `last_bulletin_date` bigint(10) NOT NULL DEFAULT '0', `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `join_date` bigint(10) unsigned NOT NULL DEFAULT '0', `last_visit` int(10) unsigned NOT NULL DEFAULT '0', `last_activity` int(10) unsigned NOT NULL DEFAULT '0', `total_entries` mediumint(8) unsigned NOT NULL DEFAULT '0', `total_comments` mediumint(8) unsigned NOT NULL DEFAULT '0', `total_forum_topics` mediumint(8) NOT NULL DEFAULT '0', `total_forum_posts` mediumint(8) NOT NULL DEFAULT '0', `last_entry_date` bigint(10) unsigned NOT NULL DEFAULT '0', `last_comment_date` bigint(10) unsigned NOT NULL DEFAULT '0', `last_forum_post_date` bigint(10) unsigned NOT NULL DEFAULT '0', `last_email_date` bigint(10) unsigned NOT NULL DEFAULT '0', `in_authorlist` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `accept_admin_email` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `accept_user_email` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `notify_by_default` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `notify_of_pm` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `display_signatures` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `parse_smileys` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `smart_notifications` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `language` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `timezone` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `time_format` char(2) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date_format` varchar(8) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `week_start` varchar(8) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `include_seconds` char(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `profile_theme` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `forum_theme` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tracker` text COLLATE utf8mb4_unicode_ci, `template_size` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '28', `notepad` text COLLATE utf8mb4_unicode_ci, `notepad_size` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '18', `bookmarklets` text COLLATE utf8mb4_unicode_ci, `quick_links` text COLLATE utf8mb4_unicode_ci, `quick_tabs` text COLLATE utf8mb4_unicode_ci, `show_sidebar` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `pmember_id` int(10) NOT NULL DEFAULT '0', `cp_homepage` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cp_homepage_channel` text COLLATE utf8mb4_unicode_ci, `cp_homepage_custom` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dismissed_banner` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `enable_mfa` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', PRIMARY KEY (`member_id`), KEY `role_id` (`role_id`), KEY `unique_id` (`unique_id`), KEY `password` (`password`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]members` -- INSERT INTO `[[dbprefix]]members` VALUES (1, 1, 0, '[[admin_username]]', '[[admin_username]]', '[[admin_pass]]', '', '[[unique_id]]', NULL, NULL, NULL, '[[admin_email]]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '[[clientip]]', [[timestamp]], 0, 0, 12, 7, 0, 0, [[timestamp]], [[timestamp]], 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'America/New_York', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '28', NULL, '18', NULL, '', NULL, 'n', 0, NULL, NULL, NULL, 'n', 'n'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]members_roles` -- CREATE TABLE `[[dbprefix]]members_roles` ( `member_id` int(10) unsigned NOT NULL, `role_id` int(10) unsigned NOT NULL, PRIMARY KEY (`member_id`,`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `[[dbprefix]]members_roles` -- INSERT INTO `[[dbprefix]]members_roles` VALUES (1, 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]members_role_groups` -- CREATE TABLE `[[dbprefix]]members_role_groups` ( `member_id` int(10) unsigned NOT NULL, `group_id` int(10) unsigned NOT NULL, PRIMARY KEY (`member_id`,`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]member_bulletin_board` -- CREATE TABLE `[[dbprefix]]member_bulletin_board` ( `bulletin_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `sender_id` int(10) unsigned NOT NULL, `bulletin_group` int(8) unsigned NOT NULL, `bulletin_date` bigint(10) unsigned NOT NULL, `hash` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `bulletin_expires` int(10) unsigned NOT NULL DEFAULT '0', `bulletin_message` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`bulletin_id`), KEY `sender_id` (`sender_id`), KEY `hash` (`hash`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]member_data` -- CREATE TABLE `[[dbprefix]]member_data` ( `member_id` int(10) unsigned NOT NULL, PRIMARY KEY (`member_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `[[dbprefix]]member_data` -- INSERT INTO `[[dbprefix]]member_data` VALUES (1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]member_fields` -- CREATE TABLE `[[dbprefix]]member_fields` ( `m_field_id` int(4) unsigned NOT NULL AUTO_INCREMENT, `m_field_name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `m_field_label` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `m_field_description` text COLLATE utf8mb4_unicode_ci NOT NULL, `m_field_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'text', `m_field_list_items` text COLLATE utf8mb4_unicode_ci NOT NULL, `m_field_ta_rows` tinyint(2) DEFAULT '8', `m_field_maxl` smallint(3) DEFAULT NULL, `m_field_width` varchar(6) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `m_field_search` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `m_field_required` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `m_field_public` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `m_field_reg` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `m_field_cp_reg` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `m_field_fmt` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'none', `m_field_show_fmt` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `m_field_exclude_from_anon` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `m_field_order` int(3) unsigned DEFAULT NULL, `m_field_text_direction` char(3) COLLATE utf8mb4_unicode_ci DEFAULT 'ltr', `m_field_settings` text COLLATE utf8mb4_unicode_ci, `m_legacy_field_data` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', PRIMARY KEY (`m_field_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]member_manager_views` -- CREATE TABLE `[[dbprefix]]member_manager_views` ( `view_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `role_id` int(6) unsigned NOT NULL, `member_id` int(10) unsigned NOT NULL, `name` varchar(128) NOT NULL DEFAULT '', `columns` text NOT NULL, PRIMARY KEY (`view_id`), KEY `role_id_member_id` (`role_id`,`member_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]member_news_views` -- CREATE TABLE `[[dbprefix]]member_news_views` ( `news_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `version` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `member_id` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`news_id`), KEY `member_id` (`member_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]member_news_views` -- INSERT INTO `[[dbprefix]]member_news_views` VALUES (1, '7.5.5', 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]member_relationships` -- CREATE TABLE `[[dbprefix]]member_relationships` ( `relationship_id` int(6) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(10) unsigned NOT NULL DEFAULT '0', `child_id` int(10) unsigned NOT NULL DEFAULT '0', `field_id` int(10) unsigned NOT NULL DEFAULT '0', `fluid_field_data_id` int(10) unsigned NOT NULL DEFAULT '0', `grid_field_id` int(10) unsigned NOT NULL DEFAULT '0', `grid_col_id` int(10) unsigned NOT NULL DEFAULT '0', `grid_row_id` int(10) unsigned NOT NULL DEFAULT '0', `order` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`relationship_id`), KEY `parent_id` (`parent_id`), KEY `child_id` (`child_id`), KEY `field_id` (`field_id`), KEY `fluid_field_data_id` (`fluid_field_data_id`), KEY `grid_row_id` (`grid_row_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]member_search` -- CREATE TABLE `[[dbprefix]]member_search` ( `search_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `search_date` bigint(10) unsigned NOT NULL, `keywords` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `fields` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `member_id` int(10) unsigned NOT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `total_results` int(8) unsigned NOT NULL, `query` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`search_id`), KEY `member_id` (`member_id`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]menu_items` -- CREATE TABLE `[[dbprefix]]menu_items` ( `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(10) NOT NULL DEFAULT '0', `set_id` int(10) DEFAULT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `data` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sort` int(5) NOT NULL DEFAULT '0', PRIMARY KEY (`item_id`), KEY `set_id` (`set_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]menu_sets` -- CREATE TABLE `[[dbprefix]]menu_sets` ( `set_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`set_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]menu_sets` -- INSERT INTO `[[dbprefix]]menu_sets` VALUES (1, 'Default'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]message_attachments` -- CREATE TABLE `[[dbprefix]]message_attachments` ( `attachment_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `sender_id` int(10) unsigned NOT NULL DEFAULT '0', `message_id` int(10) unsigned NOT NULL DEFAULT '0', `attachment_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `attachment_hash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `attachment_extension` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `attachment_location` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `attachment_date` bigint(10) unsigned NOT NULL DEFAULT '0', `attachment_size` int(10) unsigned NOT NULL DEFAULT '0', `is_temp` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', PRIMARY KEY (`attachment_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]message_copies` -- CREATE TABLE `[[dbprefix]]message_copies` ( `copy_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `message_id` int(10) unsigned NOT NULL DEFAULT '0', `sender_id` int(10) unsigned NOT NULL DEFAULT '0', `recipient_id` int(10) unsigned NOT NULL DEFAULT '0', `message_received` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `message_read` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `message_time_read` int(10) unsigned NOT NULL DEFAULT '0', `attachment_downloaded` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `message_folder` int(10) unsigned NOT NULL DEFAULT '1', `message_authcode` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `message_deleted` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `message_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`copy_id`), KEY `message_id` (`message_id`), KEY `recipient_id` (`recipient_id`), KEY `sender_id` (`sender_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]message_data` -- CREATE TABLE `[[dbprefix]]message_data` ( `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `sender_id` int(10) unsigned NOT NULL DEFAULT '0', `message_date` bigint(10) unsigned NOT NULL DEFAULT '0', `message_subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `message_body` text COLLATE utf8mb4_unicode_ci NOT NULL, `message_tracking` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `message_attachments` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `message_recipients` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `message_cc` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `message_hide_cc` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `message_sent_copy` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `total_recipients` int(5) unsigned NOT NULL DEFAULT '0', `message_status` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`message_id`), KEY `sender_id` (`sender_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]message_folders` -- CREATE TABLE `[[dbprefix]]message_folders` ( `member_id` int(10) unsigned NOT NULL DEFAULT '0', `folder1_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'InBox', `folder2_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Sent', `folder3_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `folder4_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `folder5_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `folder6_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `folder7_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `folder8_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `folder9_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `folder10_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`member_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]message_listed` -- CREATE TABLE `[[dbprefix]]message_listed` ( `listed_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `member_id` int(10) unsigned NOT NULL DEFAULT '0', `listed_member` int(10) unsigned NOT NULL DEFAULT '0', `listed_description` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `listed_type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'blocked', PRIMARY KEY (`listed_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]migrations` -- CREATE TABLE `[[dbprefix]]migrations` ( `migration_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `migration` text COLLATE utf8mb4_unicode_ci, `migration_location` text COLLATE utf8mb4_unicode_ci, `migration_group` int(10) unsigned DEFAULT NULL, `migration_run_date` datetime NOT NULL, PRIMARY KEY (`migration_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]modules` -- CREATE TABLE `[[dbprefix]]modules` ( `module_id` int(4) unsigned NOT NULL AUTO_INCREMENT, `module_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `module_version` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL, `has_cp_backend` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `has_publish_fields` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', PRIMARY KEY (`module_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=14 ; -- -- Dumping data for table `[[dbprefix]]modules` -- INSERT INTO `[[dbprefix]]modules` VALUES (1, 'Channel', '2.1.1', 'n', 'n'), (2, 'Comment', '2.3.3', 'y', 'n'), (3, 'Consent', '1.0.0', 'n', 'n'), (4, 'Member', '2.4.0', 'n', 'n'), (5, 'Stats', '2.2.0', 'n', 'n'), (6, 'Rte', '2.2.0', 'y', 'n'), (7, 'File', '1.1.0', 'n', 'n'), (8, 'Filepicker', '1.0', 'y', 'n'), (9, 'Relationship', '1.0.0', 'n', 'n'), (10, 'Search', '2.3.0', 'n', 'n'), (11, 'Pro', '2.1.0', 'n', 'n'), (12, 'Email', '2.1.0', 'n', 'n'), (13, 'Rss', '2.0.0', 'n', 'n'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]module_member_roles` -- CREATE TABLE `[[dbprefix]]module_member_roles` ( `role_id` int(10) unsigned NOT NULL, `module_id` mediumint(5) unsigned NOT NULL, PRIMARY KEY (`role_id`,`module_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]online_users` -- CREATE TABLE `[[dbprefix]]online_users` ( `online_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `member_id` int(10) NOT NULL DEFAULT '0', `in_forum` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `name` varchar(75) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `date` int(10) unsigned NOT NULL DEFAULT '0', `anon` char(1) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`online_id`), KEY `date` (`date`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]password_lockout` -- CREATE TABLE `[[dbprefix]]password_lockout` ( `lockout_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `login_date` bigint(10) unsigned NOT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `user_agent` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `username` varchar(75) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`lockout_id`), KEY `login_date` (`login_date`), KEY `ip_address` (`ip_address`), KEY `user_agent` (`user_agent`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]permissions` -- CREATE TABLE `[[dbprefix]]permissions` ( `permission_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `role_id` int(10) unsigned NOT NULL, `site_id` int(5) unsigned NOT NULL, `permission` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`permission_id`), KEY `role_id_site_id` (`role_id`,`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=101 ; -- -- Dumping data for table `[[dbprefix]]permissions` -- INSERT INTO `[[dbprefix]]permissions` VALUES (1, 1, 1, 'can_view_offline_system'), (2, 1, 1, 'can_access_cp'), (3, 1, 1, 'can_access_dock'), (4, 1, 1, 'can_access_footer_report_bug'), (5, 1, 1, 'can_access_footer_new_ticket'), (6, 1, 1, 'can_access_footer_user_guide'), (7, 1, 1, 'can_view_homepage_news'), (8, 1, 1, 'can_upload_new_files'), (9, 1, 1, 'can_edit_files'), (10, 1, 1, 'can_delete_files'), (11, 1, 1, 'can_upload_new_toolsets'), (12, 1, 1, 'can_edit_toolsets'), (13, 1, 1, 'can_delete_toolsets'), (14, 1, 1, 'can_create_upload_directories'), (15, 1, 1, 'can_edit_upload_directories'), (16, 1, 1, 'can_delete_upload_directories'), (17, 1, 1, 'can_access_files'), (18, 1, 1, 'can_access_design'), (19, 1, 1, 'can_access_addons'), (20, 1, 1, 'can_access_members'), (21, 1, 1, 'can_access_sys_prefs'), (22, 1, 1, 'can_access_comm'), (23, 1, 1, 'can_access_utilities'), (24, 1, 1, 'can_access_data'), (25, 1, 1, 'can_access_logs'), (26, 1, 1, 'can_admin_channels'), (27, 1, 1, 'can_create_channels'), (28, 1, 1, 'can_edit_channels'), (29, 1, 1, 'can_delete_channels'), (30, 1, 1, 'can_create_channel_fields'), (31, 1, 1, 'can_edit_channel_fields'), (32, 1, 1, 'can_delete_channel_fields'), (33, 1, 1, 'can_create_statuses'), (34, 1, 1, 'can_delete_statuses'), (35, 1, 1, 'can_edit_statuses'), (36, 1, 1, 'can_create_categories'), (37, 1, 1, 'can_create_roles'), (38, 1, 1, 'can_delete_roles'), (39, 1, 1, 'can_edit_roles'), (40, 1, 1, 'can_admin_design'), (41, 1, 1, 'can_create_members'), (42, 1, 1, 'can_edit_members'), (43, 1, 1, 'can_delete_members'), (44, 1, 1, 'can_admin_roles'), (45, 1, 1, 'can_admin_mbr_templates'), (46, 1, 1, 'can_ban_users'), (47, 1, 1, 'can_admin_addons'), (48, 1, 1, 'can_create_templates'), (49, 1, 1, 'can_edit_templates'), (50, 1, 1, 'can_delete_templates'), (51, 1, 1, 'can_create_template_groups'), (52, 1, 1, 'can_edit_template_groups'), (53, 1, 1, 'can_delete_template_groups'), (54, 1, 1, 'can_create_template_partials'), (55, 1, 1, 'can_edit_template_partials'), (56, 1, 1, 'can_delete_template_partials'), (57, 1, 1, 'can_create_template_variables'), (58, 1, 1, 'can_delete_template_variables'), (59, 1, 1, 'can_edit_template_variables'), (60, 1, 1, 'can_edit_categories'), (61, 1, 1, 'can_delete_categories'), (62, 1, 1, 'can_view_other_entries'), (63, 1, 1, 'can_edit_other_entries'), (64, 1, 1, 'can_assign_post_authors'), (65, 1, 1, 'can_delete_self_entries'), (66, 1, 1, 'can_delete_all_entries'), (67, 1, 1, 'can_view_other_comments'), (68, 1, 1, 'can_edit_own_comments'), (69, 1, 1, 'can_delete_own_comments'), (70, 1, 1, 'can_edit_all_comments'), (71, 1, 1, 'can_delete_all_comments'), (72, 1, 1, 'can_moderate_comments'), (73, 1, 1, 'can_send_cached_email'), (74, 1, 1, 'can_email_roles'), (75, 1, 1, 'can_email_from_profile'), (76, 1, 1, 'can_view_profiles'), (77, 1, 1, 'can_edit_html_buttons'), (78, 1, 1, 'can_post_comments'), (79, 1, 1, 'can_delete_self'), (80, 1, 1, 'can_send_private_messages'), (81, 1, 1, 'can_attach_in_private_messages'), (82, 1, 1, 'can_send_bulletins'), (83, 1, 1, 'can_search'), (84, 1, 1, 'can_create_entries'), (85, 1, 1, 'can_edit_self_entries'), (86, 1, 1, 'can_access_security_settings'), (87, 1, 1, 'can_access_translate'), (88, 1, 1, 'can_access_import'), (89, 1, 1, 'can_access_sql_manager'), (90, 1, 1, 'can_moderate_spam'), (91, 1, 1, 'can_manage_consents'), (92, 3, 1, 'can_view_online_system'), (93, 4, 1, 'can_view_online_system'), (94, 5, 1, 'can_view_online_system'), (95, 5, 1, 'can_email_from_profile'), (96, 5, 1, 'can_view_profiles'), (97, 5, 1, 'can_edit_html_buttons'), (98, 5, 1, 'can_delete_self'), (99, 5, 1, 'can_send_private_messages'), (100, 5, 1, 'can_attach_in_private_messages'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]plugins` -- CREATE TABLE `[[dbprefix]]plugins` ( `plugin_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `plugin_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `plugin_package` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `plugin_version` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL, `is_typography_related` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', PRIMARY KEY (`plugin_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]prolets` -- CREATE TABLE `[[dbprefix]]prolets` ( `prolet_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `source` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `class` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`prolet_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=3 ; -- -- Dumping data for table `[[dbprefix]]prolets` -- INSERT INTO `[[dbprefix]]prolets` VALUES (1, 'channel', 'Channel_pro'), (2, 'pro', 'Entries_pro'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]relationships` -- CREATE TABLE `[[dbprefix]]relationships` ( `relationship_id` int(6) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(10) unsigned NOT NULL DEFAULT '0', `child_id` int(10) unsigned NOT NULL DEFAULT '0', `field_id` int(10) unsigned NOT NULL DEFAULT '0', `fluid_field_data_id` int(10) unsigned NOT NULL DEFAULT '0', `grid_field_id` int(10) unsigned NOT NULL DEFAULT '0', `grid_col_id` int(10) unsigned NOT NULL DEFAULT '0', `grid_row_id` int(10) unsigned NOT NULL DEFAULT '0', `order` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`relationship_id`), KEY `parent_id` (`parent_id`), KEY `child_id` (`child_id`), KEY `field_id` (`field_id`), KEY `fluid_field_data_id` (`fluid_field_data_id`), KEY `grid_row_id` (`grid_row_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]remember_me` -- CREATE TABLE `[[dbprefix]]remember_me` ( `remember_me_id` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `member_id` int(10) DEFAULT '0', `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT '0', `user_agent` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT '', `admin_sess` tinyint(1) DEFAULT '0', `site_id` int(4) DEFAULT '1', `expiration` int(10) DEFAULT '0', `last_refresh` int(10) DEFAULT '0', PRIMARY KEY (`remember_me_id`), KEY `member_id` (`member_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]reset_password` -- CREATE TABLE `[[dbprefix]]reset_password` ( `reset_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `member_id` int(10) unsigned NOT NULL, `resetcode` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL, `date` int(10) NOT NULL, PRIMARY KEY (`reset_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]revision_tracker` -- CREATE TABLE `[[dbprefix]]revision_tracker` ( `tracker_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `item_id` int(10) unsigned NOT NULL, `item_table` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `item_field` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `item_date` bigint(10) NOT NULL, `item_author_id` int(10) unsigned NOT NULL, `item_data` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`tracker_id`), KEY `item_id` (`item_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]roles` -- CREATE TABLE `[[dbprefix]]roles` ( `role_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `short_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `site_color` varchar(6) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `total_members` mediumint(8) unsigned NOT NULL DEFAULT '0', `is_locked` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `highlight` varchar(6) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=6 ; -- -- Dumping data for table `[[dbprefix]]roles` -- INSERT INTO `[[dbprefix]]roles` VALUES (1, 'Super Admin', 'super_admin', NULL, '', 0, 'y', ''), (2, 'Banned', 'banned', NULL, '', 0, 'n', ''), (3, 'Guests', 'guests', NULL, '', 0, 'n', ''), (4, 'Pending', 'pending', NULL, '', 0, 'n', ''), (5, 'Members', 'members', NULL, '', 0, 'n', ''); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]roles_role_groups` -- CREATE TABLE `[[dbprefix]]roles_role_groups` ( `role_id` int(10) unsigned NOT NULL, `group_id` int(10) unsigned NOT NULL, PRIMARY KEY (`role_id`,`group_id`), KEY `group_id_idx` (`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]role_groups` -- CREATE TABLE `[[dbprefix]]role_groups` ( `group_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]role_settings` -- CREATE TABLE `[[dbprefix]]role_settings` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `role_id` int(10) unsigned NOT NULL, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `menu_set_id` int(5) unsigned NOT NULL DEFAULT '1', `mbr_delete_notify_emails` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `exclude_from_moderation` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `search_flood_control` mediumint(5) unsigned NOT NULL, `prv_msg_send_limit` smallint(5) unsigned NOT NULL DEFAULT '20', `prv_msg_storage_limit` smallint(5) unsigned NOT NULL DEFAULT '60', `include_in_authorlist` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `include_in_memberlist` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `cp_homepage` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cp_homepage_channel` int(10) unsigned NOT NULL DEFAULT '0', `cp_homepage_custom` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `require_mfa` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `show_field_names` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', PRIMARY KEY (`id`), KEY `role_id_site_id` (`role_id`,`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=6 ; -- -- Dumping data for table `[[dbprefix]]role_settings` -- INSERT INTO `[[dbprefix]]role_settings` VALUES (1, 1, 1, 1, NULL, 'y', 0, 20, 60, 'y', 'y', NULL, 0, NULL, 'n', 'y'), (2, 2, 1, 1, NULL, 'n', 60, 20, 60, 'n', 'n', NULL, 0, NULL, 'n', 'y'), (3, 3, 1, 1, NULL, 'n', 10, 20, 60, 'n', 'y', NULL, 0, NULL, 'n', 'y'), (4, 4, 1, 1, NULL, 'n', 10, 20, 60, 'n', 'y', NULL, 0, NULL, 'n', 'y'), (5, 5, 1, 1, NULL, 'n', 10, 20, 60, 'n', 'y', NULL, 0, NULL, 'n', 'y'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]rte_toolsets` -- CREATE TABLE `[[dbprefix]]rte_toolsets` ( `toolset_id` int(6) unsigned NOT NULL AUTO_INCREMENT, `toolset_name` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `toolset_type` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `settings` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`toolset_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=5 ; -- -- Dumping data for table `[[dbprefix]]rte_toolsets` -- INSERT INTO `[[dbprefix]]rte_toolsets` VALUES (1, 'CKEditor Basic', 'ckeditor', 'YTo1OntzOjQ6InR5cGUiO3M6ODoiY2tlZGl0b3IiO3M6NzoidG9vbGJhciI7YTo2OntpOjA7czo0OiJib2xkIjtpOjE7czo2OiJpdGFsaWMiO2k6MjtzOjk6InVuZGVybGluZSI7aTozO3M6MTI6Im51bWJlcmVkTGlzdCI7aTo0O3M6MTI6ImJ1bGxldGVkTGlzdCI7aTo1O3M6NDoibGluayI7fXM6NjoiaGVpZ2h0IjtzOjM6IjIwMCI7czoxMDoidXBsb2FkX2RpciI7czozOiJhbGwiO3M6MTA6Im1lZGlhRW1iZWQiO2E6MTp7czoxNDoicHJldmlld3NJbkRhdGEiO2I6MTt9fQ=='), (2, 'CKEditor Full', 'ckeditor', 'YTo1OntzOjQ6InR5cGUiO3M6ODoiY2tlZGl0b3IiO3M6NzoidG9vbGJhciI7YTozNTp7aTowO3M6NDoiYm9sZCI7aToxO3M6NjoiaXRhbGljIjtpOjI7czoxMzoic3RyaWtldGhyb3VnaCI7aTozO3M6OToidW5kZXJsaW5lIjtpOjQ7czo5OiJzdWJzY3JpcHQiO2k6NTtzOjExOiJzdXBlcnNjcmlwdCI7aTo2O3M6MTA6ImJsb2NrcXVvdGUiO2k6NztzOjQ6ImNvZGUiO2k6ODtzOjk6ImNvZGVCbG9jayI7aTo5O3M6NzoiaGVhZGluZyI7aToxMDtzOjEyOiJyZW1vdmVGb3JtYXQiO2k6MTE7czo0OiJ1bmRvIjtpOjEyO3M6NDoicmVkbyI7aToxMztzOjEyOiJudW1iZXJlZExpc3QiO2k6MTQ7czoxMjoiYnVsbGV0ZWRMaXN0IjtpOjE1O3M6Nzoib3V0ZGVudCI7aToxNjtzOjY6ImluZGVudCI7aToxNztzOjQ6ImxpbmsiO2k6MTg7czoxMToiZmlsZW1hbmFnZXIiO2k6MTk7czoxMToiaW5zZXJ0SW1hZ2UiO2k6MjA7czoxMToiaW5zZXJ0VGFibGUiO2k6MjE7czoxMDoibWVkaWFFbWJlZCI7aToyMjtzOjk6Imh0bWxFbWJlZCI7aToyMztzOjE0OiJhbGlnbm1lbnQ6bGVmdCI7aToyNDtzOjE1OiJhbGlnbm1lbnQ6cmlnaHQiO2k6MjU7czoxNjoiYWxpZ25tZW50OmNlbnRlciI7aToyNjtzOjE3OiJhbGlnbm1lbnQ6anVzdGlmeSI7aToyNztzOjE0OiJob3Jpem9udGFsTGluZSI7aToyODtzOjE3OiJzcGVjaWFsQ2hhcmFjdGVycyI7aToyOTtzOjg6InJlYWRNb3JlIjtpOjMwO3M6OToiZm9udENvbG9yIjtpOjMxO3M6MTk6ImZvbnRCYWNrZ3JvdW5kQ29sb3IiO2k6MzI7czoxNDoiZmluZEFuZFJlcGxhY2UiO2k6MzM7czoxMDoic2hvd0Jsb2NrcyI7aTozNDtzOjEzOiJzb3VyY2VFZGl0aW5nIjt9czo2OiJoZWlnaHQiO3M6MzoiMjAwIjtzOjEwOiJ1cGxvYWRfZGlyIjtzOjM6ImFsbCI7czoxMDoibWVkaWFFbWJlZCI7YToxOntzOjE0OiJwcmV2aWV3c0luRGF0YSI7YjoxO319'), (3, 'RedactorX Basic', 'redactorX', 'YTo0OntzOjQ6InR5cGUiO3M6OToicmVkYWN0b3JYIjtzOjc6InRvb2xiYXIiO2E6MTI6e3M6MTI6InRvb2xiYXJfaGlkZSI7czoxOiJ5IjtzOjE0OiJ0b29sYmFyX3RvcGJhciI7czoxOiJuIjtzOjE0OiJ0b29sYmFyX2FkZGJhciI7czoxOiJuIjtzOjE1OiJ0b29sYmFyX2NvbnRleHQiO3M6MToibiI7czoxNToidG9vbGJhcl9jb250cm9sIjtzOjE6Im4iO3M6NDoiaGlkZSI7YTowOnt9czo2OiJ0b3BiYXIiO2E6Mzp7aTowO3M6ODoic2hvcnRjdXQiO2k6MTtzOjQ6InVuZG8iO2k6MjtzOjQ6InJlZG8iO31zOjY6ImFkZGJhciI7YTo2OntpOjA7czo5OiJwYXJhZ3JhcGgiO2k6MTtzOjU6ImVtYmVkIjtpOjI7czo1OiJ0YWJsZSI7aTozO3M6NToicXVvdGUiO2k6NDtzOjM6InByZSI7aTo1O3M6NDoibGluZSI7fXM6NzoiY29udGV4dCI7YTo5OntpOjA7czo0OiJib2xkIjtpOjE7czo2OiJpdGFsaWMiO2k6MjtzOjc6ImRlbGV0ZWQiO2k6MztzOjQ6ImNvZGUiO2k6NDtzOjQ6ImxpbmsiO2k6NTtzOjQ6Im1hcmsiO2k6NjtzOjM6InN1YiI7aTo3O3M6Mzoic3VwIjtpOjg7czozOiJrYmQiO31zOjY6ImVkaXRvciI7YTo0OntpOjA7czo2OiJmb3JtYXQiO2k6MTtzOjQ6ImJvbGQiO2k6MjtzOjY6Iml0YWxpYyI7aTozO3M6NDoibGluayI7fXM6NjoiZm9ybWF0IjthOjM6e2k6MDtzOjE6InAiO2k6MTtzOjI6InVsIjtpOjI7czoyOiJvbCI7fXM6NzoicGx1Z2lucyI7YTo0OntpOjA7czo5OiJ1bmRlcmxpbmUiO2k6MTtzOjExOiJmaWxlYnJvd3NlciI7aToyO3M6MTY6InJ0ZV9kZWZpbmVkbGlua3MiO2k6MztzOjU6InBhZ2VzIjt9fXM6NjoiaGVpZ2h0IjtzOjM6IjIwMCI7czoxMDoidXBsb2FkX2RpciI7czozOiJhbGwiO30='), (4, 'RedactorX Full', 'redactorX', 'YTo0OntzOjQ6InR5cGUiO3M6OToicmVkYWN0b3JYIjtzOjc6InRvb2xiYXIiO2E6MTI6e3M6MTI6InRvb2xiYXJfaGlkZSI7czoxOiJ5IjtzOjE0OiJ0b29sYmFyX3RvcGJhciI7czoxOiJ5IjtzOjE0OiJ0b29sYmFyX2FkZGJhciI7czoxOiJ5IjtzOjE1OiJ0b29sYmFyX2NvbnRleHQiO3M6MToieSI7czoxNToidG9vbGJhcl9jb250cm9sIjtzOjE6InkiO3M6NDoiaGlkZSI7YTowOnt9czo2OiJ0b3BiYXIiO2E6Mzp7aTowO3M6NDoidW5kbyI7aToxO3M6NDoicmVkbyI7aToyO3M6ODoic2hvcnRjdXQiO31zOjY6ImFkZGJhciI7YTo2OntpOjA7czo5OiJwYXJhZ3JhcGgiO2k6MTtzOjU6ImVtYmVkIjtpOjI7czo1OiJ0YWJsZSI7aTozO3M6NToicXVvdGUiO2k6NDtzOjM6InByZSI7aTo1O3M6NDoibGluZSI7fXM6NzoiY29udGV4dCI7YTo5OntpOjA7czo0OiJib2xkIjtpOjE7czo2OiJpdGFsaWMiO2k6MjtzOjc6ImRlbGV0ZWQiO2k6MztzOjQ6ImNvZGUiO2k6NDtzOjQ6ImxpbmsiO2k6NTtzOjQ6Im1hcmsiO2k6NjtzOjM6InN1YiI7aTo3O3M6Mzoic3VwIjtpOjg7czozOiJrYmQiO31zOjY6ImVkaXRvciI7YTo3OntpOjA7czozOiJhZGQiO2k6MTtzOjQ6Imh0bWwiO2k6MjtzOjY6ImZvcm1hdCI7aTozO3M6NDoiYm9sZCI7aTo0O3M6NjoiaXRhbGljIjtpOjU7czo3OiJkZWxldGVkIjtpOjY7czo0OiJsaW5rIjt9czo2OiJmb3JtYXQiO2E6OTp7aTowO3M6MToicCI7aToxO3M6MjoiaDEiO2k6MjtzOjI6ImgyIjtpOjM7czoyOiJoMyI7aTo0O3M6MjoiaDQiO2k6NTtzOjI6Img1IjtpOjY7czoyOiJoNiI7aTo3O3M6MjoidWwiO2k6ODtzOjI6Im9sIjt9czo3OiJwbHVnaW5zIjthOjE1OntpOjA7czo5OiJ1bmRlcmxpbmUiO2k6MTtzOjk6ImFsaWdubWVudCI7aToyO3M6OToiYmxvY2tjb2RlIjtpOjM7czoxNjoicnRlX2RlZmluZWRsaW5rcyI7aTo0O3M6NToicGFnZXMiO2k6NTtzOjExOiJmaWxlYnJvd3NlciI7aTo2O3M6MTM6ImltYWdlcG9zaXRpb24iO2k6NztzOjExOiJpbWFnZXJlc2l6ZSI7aTo4O3M6MTI6ImlubGluZWZvcm1hdCI7aTo5O3M6MTI6InJlbW92ZWZvcm1hdCI7aToxMDtzOjc6ImNvdW50ZXIiO2k6MTE7czo4OiJzZWxlY3RvciI7aToxMjtzOjEyOiJzcGVjaWFsY2hhcnMiO2k6MTM7czoxMzoidGV4dGRpcmVjdGlvbiI7aToxNDtzOjg6InJlYWRtb3JlIjt9fXM6NjoiaGVpZ2h0IjtzOjM6IjIwMCI7czoxMDoidXBsb2FkX2RpciI7czozOiJhbGwiO30='); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]search` -- CREATE TABLE `[[dbprefix]]search` ( `search_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `site_id` int(4) NOT NULL DEFAULT '1', `search_date` int(10) NOT NULL, `keywords` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `member_id` int(10) unsigned NOT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, `total_results` int(6) NOT NULL, `per_page` tinyint(3) unsigned NOT NULL, `query` mediumtext COLLATE utf8mb4_unicode_ci, `custom_fields` mediumtext COLLATE utf8mb4_unicode_ci, `result_page` varchar(70) COLLATE utf8mb4_unicode_ci NOT NULL, `no_result_page` varchar(70) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`search_id`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]search_log` -- CREATE TABLE `[[dbprefix]]search_log` ( `id` int(10) NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `member_id` int(10) unsigned NOT NULL, `screen_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `search_date` int(10) NOT NULL, `search_type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `search_terms` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]security_hashes` -- CREATE TABLE `[[dbprefix]]security_hashes` ( `hash_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `date` int(10) unsigned NOT NULL, `session_id` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `hash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`hash_id`), KEY `session_id` (`session_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]sessions` -- CREATE TABLE `[[dbprefix]]sessions` ( `session_id` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `member_id` int(10) NOT NULL DEFAULT '0', `admin_sess` tinyint(1) NOT NULL DEFAULT '0', `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `user_agent` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `login_state` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fingerprint` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, `sess_start` int(10) unsigned NOT NULL DEFAULT '0', `auth_timeout` int(10) unsigned NOT NULL DEFAULT '0', `last_activity` int(10) unsigned NOT NULL DEFAULT '0', `can_debug` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `mfa_flag` enum('skip','show','required') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'skip', `pro_banner_seen` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', PRIMARY KEY (`session_id`), KEY `member_id` (`member_id`), KEY `last_activity_idx` (`last_activity`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]sites` -- CREATE TABLE `[[dbprefix]]sites` ( `site_id` int(5) unsigned NOT NULL AUTO_INCREMENT, `site_label` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `site_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `site_description` text COLLATE utf8mb4_unicode_ci, `site_color` varchar(6) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `site_bootstrap_checksums` text COLLATE utf8mb4_unicode_ci NOT NULL, `site_pages` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`site_id`), KEY `site_name` (`site_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]sites` -- INSERT INTO `[[dbprefix]]sites` VALUES (1, '[[site_name]]', 'default_site', NULL, '', '', ''); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]snippets` -- CREATE TABLE `[[dbprefix]]snippets` ( `snippet_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) NOT NULL, `snippet_name` varchar(75) COLLATE utf8mb4_unicode_ci NOT NULL, `snippet_contents` text COLLATE utf8mb4_unicode_ci, `edit_date` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`snippet_id`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4 ; -- -- Dumping data for table `[[dbprefix]]snippets` -- INSERT INTO `[[dbprefix]]snippets` VALUES (1, 0, 'snp_blog_list', '
\n {!-- title --}\n

{title}

\n

on: {entry_date format=''%n/%j/%Y''}, by: {author}, {comment_total} comment{if comment_total != 1}s{/if}

\n
', [[timestamp]]), (2, 0, 'snp_blog_list_paginate', '{!-- pagination --}\n{paginate}\n
\n {pagination_links page_padding=''1''}\n \n {/pagination_links}\n
\n{/paginate}', [[timestamp]]), (3, 0, 'snp_main_nav', ' ', [[timestamp]]); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]specialty_templates` -- CREATE TABLE `[[dbprefix]]specialty_templates` ( `template_id` int(6) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `enable_template` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `template_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `data_title` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `template_type` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template_subtype` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template_data` text COLLATE utf8mb4_unicode_ci NOT NULL, `template_notes` text COLLATE utf8mb4_unicode_ci, `edit_date` bigint(10) NOT NULL DEFAULT '0', `last_author_id` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`template_id`), KEY `template_name` (`template_name`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=19 ; -- -- Dumping data for table `[[dbprefix]]specialty_templates` -- INSERT INTO `[[dbprefix]]specialty_templates` VALUES (1, 1, 'y', 'offline_template', '', 'system', NULL, '\n\n \n System Offline\n \n\n \n \n \n
\n
\n
\n
\n

System Offline

\n
\n
\n This site is currently offline\n
\n
\n
\n
\n \n', NULL, [[timestamp]], 0), (2, 1, 'y', 'message_template', '', 'system', NULL, '\n\n \n {title}\n \n \n \n {meta_refresh}\n \n \n \n
\n
\n
\n
\n

{heading}

\n
\n
\n {content}\n\n\n
\n \n
\n
\n
\n \n', NULL, [[timestamp]], 0), (3, 1, 'y', 'post_install_message_template', '', 'system', NULL, '\n\n \n Welcome to ExpressionEngine!\n \n \n \n \n \n
\n
\n \n
\n
\n

ExpressionEngine has been installed!

\n
\n
\n
\n

If you see this message, then everything went well.

\n\n
\n
\n \n
\n
\n

If you are site owner, please login into your Control Panel and create your first template.

\n
\n
\n
\n
\n \n
\n
\n

If this is your first time using ExpressionEngine CMS, make sure to check out the documentation to get started.

\n
\n
\n
\n
\n \n
\n \n
\n

ExpressionEngine

\n

©2023 Packet Tide, LLC

\n
\n
\n\n \n', NULL, [[timestamp]], 0), (4, 1, 'y', 'mfa_template', '', 'system', NULL, '\n \n \n {title}\n \n \n \n {meta_refresh}\n \n \n \n
\n
\n
\n
\n
\n

{heading}

\n
\n
\n {content}\n
\n \n
\n
\n
\n
\n \n ', NULL, [[timestamp]], 0), (5, 1, 'y', 'admin_notify_reg', 'Notification of new member registration', 'email', 'members', 'New member registration site: {site_name}\n\nScreen name: {name}\nUser name: {username}\nEmail: {email}\n\nYour control panel URL: {control_panel_url}', NULL, [[timestamp]], 0), (6, 1, 'y', 'admin_notify_entry', 'A new channel entry has been posted', 'email', 'content', 'A new entry has been posted in the following channel:\n{channel_name}\n\nThe title of the entry is:\n{entry_title}\n\nPosted by: {name}\nEmail: {email}\n\nTo read the entry please visit:\n{entry_url}\n', NULL, [[timestamp]], 0), (7, 1, 'y', 'admin_notify_comment', 'You have just received a comment', 'email', 'comments', 'You have just received a comment for the following channel:\n{channel_name}\n\nThe title of the entry is:\n{entry_title}\n\nLocated at:\n{comment_url}\n\nPosted by: {name}\nEmail: {email}\nURL: {url}\nLocation: {location}\n\n{comment}', NULL, [[timestamp]], 0), (8, 1, 'y', 'mbr_activation_instructions', 'Enclosed is your activation code', 'email', 'members', 'Thank you for your new member registration.\n\nTo activate your new account, please visit the following URL:\n\n{unwrap}{activation_url}{/unwrap}\n\nThank You!\n\n{site_name}\n\n{site_url}', NULL, [[timestamp]], 0), (9, 1, 'y', 'forgot_password_instructions', 'Login information', 'email', 'members', 'To reset your password, please go to the following page:\n\n{reset_url}\n\nThen log in with your username: {username}\n\nIf you do not wish to reset your password, ignore this message. It will expire in 24 hours.\n\n{site_name}\n{site_url}', NULL, [[timestamp]], 0), (10, 1, 'y', 'password_changed_notification', 'Password changed', 'email', 'members', 'Your password was just changed.\n\nIf you didn''t make this change yourself, please contact an administrator right away.\n\n{site_name}\n{site_url}', NULL, [[timestamp]], 0), (11, 1, 'y', 'forgot_username_instructions', 'Username information', 'email', 'members', 'Your username is: {username}\n\nIf you didn''t request your username yourself, please contact an administrator right away.\n\n{site_name}\n{site_url}', NULL, [[timestamp]], 0), (12, 1, 'y', 'email_changed_notification', 'Email address changed', 'email', 'members', 'Your email address has been changed, and this email address is no longer associated with your account.\n\nIf you didn''t make this change yourself, please contact an administrator right away.\n\n{site_name}\n{site_url}', NULL, [[timestamp]], 0), (13, 1, 'y', 'validated_member_notify', 'Your membership account has been activated', 'email', 'members', 'Your membership account has been activated and is ready for use.\n\nThank You!\n\n{site_name}\n{site_url}', NULL, [[timestamp]], 0), (14, 1, 'y', 'decline_member_validation', 'Your membership account has been declined', 'email', 'members', 'We''re sorry but our staff has decided not to validate your membership.\n\n{site_name}\n{site_url}', NULL, [[timestamp]], 0), (15, 1, 'y', 'comment_notification', 'Someone just responded to your comment', 'email', 'comments', '{name_of_commenter} just responded to the entry you subscribed to at:\n{channel_name}\n\nThe title of the entry is:\n{entry_title}\n\nYou can see the comment at the following URL:\n{comment_url}\n\n{comment}\n\nTo stop receiving notifications for this comment, click here:\n{notification_removal_url}', NULL, [[timestamp]], 0), (16, 1, 'y', 'comments_opened_notification', 'New comments have been added', 'email', 'comments', 'Responses have been added to the entry you subscribed to at:\n{channel_name}\n\nThe title of the entry is:\n{entry_title}\n\nYou can see the comments at the following URL:\n{comment_url}\n\n{comments}\n{comment}\n{/comments}\n\nTo stop receiving notifications for this entry, click here:\n{notification_removal_url}', NULL, [[timestamp]], 0), (17, 1, 'y', 'private_message_notification', 'Someone has sent you a Private Message', 'email', 'private_messages', '\n{recipient_name},\n\n{sender_name} has just sent you a Private Message titled ‘{message_subject}’.\n\nYou can see the Private Message by logging in and viewing your inbox at:\n{site_url}\n\nContent:\n\n{message_content}\n\nTo stop receiving notifications of Private Messages, turn the option off in your Email Settings.\n\n{site_name}\n{site_url}', NULL, [[timestamp]], 0), (18, 1, 'y', 'pm_inbox_full', 'Your private message mailbox is full', 'email', 'private_messages', '{recipient_name},\n\n{sender_name} has just attempted to send you a Private Message,\nbut your inbox is full, exceeding the maximum of {pm_storage_limit}.\n\nPlease log in and remove unwanted messages from your inbox at:\n{site_url}', NULL, [[timestamp]], 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]stats` -- CREATE TABLE `[[dbprefix]]stats` ( `stat_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `total_members` mediumint(7) NOT NULL DEFAULT '0', `recent_member_id` int(10) NOT NULL DEFAULT '0', `recent_member` varchar(75) COLLATE utf8mb4_unicode_ci NOT NULL, `total_entries` mediumint(8) NOT NULL DEFAULT '0', `total_forum_topics` mediumint(8) NOT NULL DEFAULT '0', `total_forum_posts` mediumint(8) NOT NULL DEFAULT '0', `total_comments` mediumint(8) NOT NULL DEFAULT '0', `last_entry_date` bigint(10) unsigned NOT NULL DEFAULT '0', `last_forum_post_date` bigint(10) unsigned NOT NULL DEFAULT '0', `last_comment_date` bigint(10) unsigned NOT NULL DEFAULT '0', `last_visitor_date` bigint(10) unsigned NOT NULL DEFAULT '0', `most_visitors` mediumint(7) NOT NULL DEFAULT '0', `most_visitor_date` bigint(10) unsigned NOT NULL DEFAULT '0', `last_cache_clear` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`stat_id`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]stats` -- INSERT INTO `[[dbprefix]]stats` VALUES (1, 1, 1, 1, '[[admin_username]]', 12, 0, 0, 15, [[timestamp]], 0, [[timestamp]], 0, 0, 0, [[timestamp]]); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]statuses` -- CREATE TABLE `[[dbprefix]]statuses` ( `status_id` int(6) unsigned NOT NULL AUTO_INCREMENT, `status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `status_order` int(3) unsigned NOT NULL, `highlight` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '000000', PRIMARY KEY (`status_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=4 ; -- -- Dumping data for table `[[dbprefix]]statuses` -- INSERT INTO `[[dbprefix]]statuses` VALUES (1, 'open', 1, '009933'), (2, 'closed', 2, '990000'), (3, 'Default Page', 3, '2051B3'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]statuses_roles` -- CREATE TABLE `[[dbprefix]]statuses_roles` ( `role_id` int(10) unsigned NOT NULL, `status_id` int(6) unsigned NOT NULL, PRIMARY KEY (`status_id`,`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `[[dbprefix]]statuses_roles` -- INSERT INTO `[[dbprefix]]statuses_roles` VALUES (5, 1), (5, 2); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]templates` -- CREATE TABLE `[[dbprefix]]templates` ( `template_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `group_id` int(6) unsigned NOT NULL, `template_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `template_type` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'webpage', `template_engine` varchar(24) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template_data` mediumtext COLLATE utf8mb4_unicode_ci, `template_notes` text COLLATE utf8mb4_unicode_ci, `edit_date` bigint(10) NOT NULL DEFAULT '0', `last_author_id` int(10) unsigned NOT NULL DEFAULT '0', `cache` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `refresh` int(6) unsigned NOT NULL DEFAULT '0', `no_auth_bounce` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `enable_http_auth` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `allow_php` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `php_parse_location` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'o', `hits` int(10) unsigned NOT NULL DEFAULT '0', `protect_javascript` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `enable_frontedit` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', PRIMARY KEY (`template_id`), KEY `group_id` (`group_id`), KEY `template_name` (`template_name`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=21 ; -- -- Dumping data for table `[[dbprefix]]templates` -- INSERT INTO `[[dbprefix]]templates` VALUES (1, 1, 1, 'sample-widget', 'webpage', NULL, '{widget title="Demo dashboard widget" width="half"}\n\n

Random entry: {exp:channel:entries dynamic="no" orderby="random" limit="1"}{title}{/exp:channel:entries}

\n\n

To see this code please visit the template pro-dashboard-widgets/sample-widget.

\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (2, 1, 2, 'entry', 'webpage', NULL, '{layout=''layouts/_blog-layout''}\n\n{!--\n Redirect\n ============\n This is a blog single entry page, it''ll never need a fourth segment, so we use the following code to make sure the page redirects if someone types in an incorrect URL in the browser address bar, by adding new segments. i.e. http://example.com/blog/entry/title/nothing\n--}\n{if segment_4}\n {redirect=''{segment_1}/{segment_2}/{segment_3}''}\n{/if}\n\n{!-- page vars (prefix p_) --}\n{preload_replace:p_title=''My Blog''}\n{preload_replace:p_description=''A blog about things, things I like and things I do.''}\n{preload_replace:p_url=''blog''}\n{preload_replace:p_url_entry=''entry''}\n{!-- channel vars (prefix ch_) --}\n{preload_replace:ch=''blog''}\n{preload_replace:ch_disable=''category_fields|member_data|pagination''}\n{!-- layout vars, channel/page related --}\n{layout:set name=''ch'' value=''{ch}''}\n{layout:set name=''p_url'' value=''{p_url}''}\n{layout:set name=''p_title'' value=''{p_title}''}\n\n\n {!-- single-entry pagination --}\n
\n {exp:channel:prev_entry channel=''{ch}''}\n Previous\n {/exp:channel:prev_entry}\n {exp:channel:next_entry channel=''{ch}''}\n Next\n {/exp:channel:next_entry}\n
\n {!-- require_entry makes it so if someone types the wrong URL, they will get a 404 page --}\n {exp:channel:entries channel=''{ch}'' disable=''{ch_disable}'' limit=''1'' require_entry=''yes''}\n {!-- layout vars, dynamic, not output --}\n {layout:set name=''title'' value=''{seo_title}{gv_sep}{p_title}{gv_sep}''}\n {layout:set name=''description'' value=''{seo_desc}''}\n {layout:set name=''entry_ch'' value=''{ch}''}\n {!-- OpenGraph meta output --}\n {layout:set name=''og_title'' value=''{seo_title}''}\n {layout:set name=''og_url''}{path=''{p_url}''}{/layout:set}\n {layout:set name=''og_description'' value=''{seo_desc}''}\n {!-- /layout vars, dynamic, not output --}\n\n {!-- content output --}\n

{title}

\n {!-- video, youtube or vimeo? (GRID) --}\n {if blog_video}\n {blog_video}\n {if blog_video:type == ''youtube''}\n
\n
\n \n
\n
\n {/if}\n {if blog_video:type == ''vimeo''}\n
\n
\n \n
\n
\n {/if}\n {/blog_video}\n {/if}\n {!-- audio, soundcloud or bandcamp? (GRID) --}\n {if blog_audio}\n {blog_audio}\n {if blog_audio:type == ''soundcloud''}\n
\n \n
\n {/if}\n {if blog_audio:type == ''bandcamp''}\n
\n \n
\n {/if}\n {/blog_audio}\n {/if}\n {!-- image (GRID) --}\n {if blog_image}\n {blog_image}\n
\n {blog_image:caption:attr_safe}\n
{blog_image:caption}
\n
\n {/blog_image}\n {/if}\n {!-- blog_content is a textarea with HTML output we don''t need to wrap this tag with HTML as that is already included in it''s output. --}\n {blog_content}\n {!-- /content output --}\n\n {!--\n no results redirect\n ===================\n If the entry doesn''t exist, we redirect to 404. This works in tandem with the require_entry=''yes'' parameter on the channel entries tag.\n --}\n {if no_results}\n {redirect=''404''}\n {/if}\n {!--\n comments\n comment:entries and comment:form are independent of channel:entries\n we''ve put them into a embed here to demonstrate how to get a specific\n display on the front end of the site using allow_comments.\n This would not work without the embed, as these tags would not parse\n inside the channel:entries tag.\n --}\n {if allow_comments}\n {embed=''{p_url}/_comments'' ch=''{ch}''}\n {if:else}\n {if comment_total >= 1}\n {embed=''{p_url}/_comments'' ch=''{ch}''}\n {/if}\n
\n {if comment_expiration_date < current_time AND comment_expiration_date != 0}\n

{gv_comment_expired}

\n {if:else}\n

{gv_comment_disabled}

\n {/if}\n
\n {/if}\n {/exp:channel:entries}\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (3, 1, 2, '_comments', 'webpage', NULL, '{!-- comments --}\n
\n

Commentary

\n {!-- comment entries --}\n {exp:comment:entries channel=''{embed:ch}''}\n \n {!--\n no results output\n ===================\n If there are no comments, show this message.\n --}\n {if no_results}\n
\n

{gv_comment_none}

\n
\n {/if}\n {/exp:comment:entries}\n\n {!-- comment form --}\n
\n {exp:comment:form channel=''{embed:ch}'' form_class=''comment-form'' return=''{segment_1}/{segment_2}/{segment_3}#last-comment''}\n {!-- if the user is logged out show more fields for commenting --}\n {if logged_out}\n

Comment as a guest Required Fields ✱

\n
\n
\n \n What do you want to be called?\n
\n
\n \n
\n
\n
\n
\n \n How do we contact you?\n
\n
\n \n
\n
\n
\n
\n \n Where are you commenting from?\n
\n
\n \n
\n
\n
\n
\n \n Do you have a website to share?\n
\n
\n \n
\n
\n {if:else}\n

Comment as {screen_name} ✱ Required Fields

\n {/if}\n
\n
\n \n Please keep it kind, brief and courteous.\n
\n
\n \n
\n
\n
\n
\n \n Extra stuff we can do!\n
\n
\n \n \n
\n
\n
\n \n
\n {!-- required to prevent EE from outputting text --}\n {if comments_disabled}{/if}\n {if comments_expired}{/if}\n {/exp:comment:form}\n
\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (4, 1, 2, 'no-results', 'webpage', NULL, '{layout=''layouts/_blog-layout''}\n\n{!-- prevents 4th ++ segments on no results searches --}\n{if segment_4}\n {redirect=''{segment_1}/{segment_2}/{segment_3}''}\n{/if}\n\n{!-- page vars --}\n{preload_replace:p_title=''My Blog''}\n{preload_replace:p_description=''Search Results''}\n{preload_replace:p_url=''blog''}\n{!-- channel vars (prefix ch_) --}\n{preload_replace:ch=''blog''}\n{!-- layout vars, channel/page related --}\n{layout:set name=''ch'' value=''{ch}''}\n{layout:set name=''p_url'' value=''{p_url}''}\n{layout:set name=''p_title'' value=''{p_title}''}\n{layout:set name=''search'' value=''y''}\n{!-- layout vars --}\n{layout:set name=''title'' value=''search results{gv_sep}{p_title}{gv_sep}''}\n{layout:set name=''description'' value=''{p_description}''}\n\n

Search Results, {p_title}

\n
\n

Sorry, zero entries found matching "{exp:search:keywords}".

\n
\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (5, 1, 2, 'index', 'webpage', NULL, '{layout=''layouts/_blog-layout''}\n\n{!--\n 404 Redirect\n ============\n This is a listing page, it needs categories and pagination to work, but also needs to redirect if segment_2 is invalid . i.e. http://example.com/blog/nothing\n--}\n{if segment_2}\n {if segment_2 != ''category'' AND segment_2 ~ ''/^(?!P\\d+).*/''}\n {redirect=''404''}\n {/if}\n{/if}\n\n{!-- prevents 3rd ++ segments on non category listings --}\n{if segment_3}\n {if segment_2 != ''category''}\n {redirect=''{segment_1}/{segment_2}''}\n {/if}\n{/if}\n\n{!-- prevents 4th ++ segments on category listings --}\n{if segment_4}\n {if segment_4 ~ ''/^(?!P\\d+).*/''}\n {redirect=''{segment_1}/{segment_2}/{segment_3}''}\n {/if}\n{/if}\n\n{!-- prevents 5th ++ segments on paginated category listings --}\n{if segment_5}\n {redirect=''{segment_1}/{segment_2}/{segment_3}/{segment_4}''}\n{/if}\n\n{!-- We use preload replace variables for in-template replacements for things\n like tag parameters that we might repeat here. That way if we change things\n down the road, we can just change it here instead of looking all over the\n template for them. --}\n\n{!-- page vars (prefix p_) --}\n{preload_replace:p_title=''My Blog''}\n{preload_replace:p_description=''A blog about things, things I like and things I do.''}\n{preload_replace:p_url=''blog''}\n{preload_replace:p_url_entry=''entry''}\n{!-- channel vars (prefix ch_) --}\n{preload_replace:ch=''blog''}\n{preload_replace:ch_disable=''category_fields|member_data''}\n\n{!-- every template using the blog layout will set these which lets us use\n shared markup with customizable details. --}\n\n{!-- layout vars, channel/page related --}\n{layout:set name=''ch'' value=''{ch}''}\n{layout:set name=''p_url'' value=''{p_url}''}\n{layout:set name=''p_title'' value=''{p_title}''}\n{!-- layout vars, static --}\n{layout:set name=''title'' value=''{p_title}{gv_sep}''}\n{layout:set name=''description'' value=''{p_description}''}\n{!-- OpenGraph meta output --}\n{layout:set name=''og_title'' value=''{p_title}''}\n{layout:set name=''og_url''}{path=''{p_url}''}{/layout:set}\n{layout:set name=''og_description'' value=''{p_description}''}\n\n{!-- Everything below is the "meat" of the template. We''ll use tags to output content,\n which will populate the layout:contents of the layouts/_blog-layout layout --}\n\n {!-- Heading output is different in the case of category listings. --}\n {if segment_2 == ''category''}\n {layout:set name=''cat_ch'' value=''{ch}''}\n {exp:channel:category_heading channel=''{ch}''}\n

{category_name}

\n {if category_description}\n

{category_description}

\n {/if}\n {/exp:channel:category_heading}\n {if:else}\n

{p_title}

\n

{p_description}

\n {/if}\n
\n {exp:channel:entries channel=''{ch}'' disable=''{ch_disable}'' limit=''5''}\n {!-- listing as a snippet, as it''s used through more than one template --}\n {snp_blog_list}\n {!-- no results output --}\n {if no_results}\n
\n

{gv_entries_none}

\n
\n {/if}\n {!-- pagination --}\n {snp_blog_list_paginate}\n {/exp:channel:entries}\n
', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (6, 1, 2, 'search', 'webpage', NULL, '{layout=''layouts/_blog-layout''}\n\n{!-- prevents 4th ++ segments on search results --}\n{if segment_4}\n {if segment_4 ~ ''/^(?!P\\d+).*/''}\n {redirect=''{segment_1}/{segment_2}/{segment_3}''}\n {/if}\n{/if}\n\n{!-- prevents 5th ++ segments on paginated search results --}\n{if segment_5}\n {redirect=''{segment_1}/{segment_2}/{segment_3}/{segment_4}''}\n{/if}\n\n{!-- page vars --}\n{preload_replace:p_title=''My Blog''}\n{preload_replace:p_description=''Search Results''}\n{preload_replace:p_url=''blog''}\n{preload_replace:p_url_entry=''entry''}\n{!-- channel vars (prefix ch_) --}\n{preload_replace:ch=''blog''}\n{!-- layout vars, channel/page related --}\n{layout:set name=''ch'' value=''{ch}''}\n{layout:set name=''p_url'' value=''{p_url}''}\n{layout:set name=''p_title'' value=''{p_title}''}\n{layout:set name=''search'' value=''y''}\n{!-- layout vars --}\n{layout:set name=''title'' value=''search results{gv_sep}{p_title}{gv_sep}''}\n{layout:set name=''description'' value=''{p_description}''}\n\n

Search Results, {p_title}

\n
\n {exp:search:search_results}\n {!-- listing as a snippet, as it''s used through more than one template --}\n {snp_blog_list}\n {!-- pagination --}\n {snp_blog_list_paginate}\n {/exp:search:search_results}\n
\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (7, 1, 2, 'rss', 'feed', NULL, '{!-- page vars (prefix p_) --}\n{preload_replace:p_title=''My Blog''}\n{preload_replace:p_url=''blog''}\n{preload_replace:p_url_entry=''entry''}\n{!-- channel vars (prefix ch_) --}\n{preload_replace:ch=''blog''}\n{preload_replace:ch_disable=''member_data|pagination''}\n\n{exp:rss:feed channel=''{ch}''}\n \n \n\n \n\n <![CDATA[{p_title} / {site_name}]]>\n {site_url}{p_url}/\n {channel_description}\n {channel_language}\n {email} ({author})\n Copyright {gmt_date format=''%Y''}\n {gmt_date format=''%Y-%m-%dT%H:%i:%s%Q''}\n \n\n {exp:channel:entries channel=''{ch}'' disable=''{ch_disable}'' limit=''10'' rdf=''off'' dynamic_start=''yes''}\n \n <![CDATA[{title}]]>\n {title_permalink=''{p_url}/{p_url_entry}''}\n {title_permalink=''{p_url}/{p_url_entry}''}\n {email} ({author})\n Read more

]]>
\n \n {gmt_entry_date format=''{DATE_RSS}''}\n
\n {/exp:channel:entries}\n\n
\n
\n{/exp:rss:feed}', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (8, 1, 3, 'index', 'webpage', NULL, '{layout=''layouts/_contact-layout''}\n\n{!--\n 404 Redirect\n ============\n This is a single entry channel page, it only needs a second segment when the form has been successfully submitted. So we use the following code to make sure the page sends a 404 if someone types in an incorrect URL in the browser address bar. i.e. http://example.com/page/nothing\n--}\n{if segment_2 AND segment_2 != ''thanks''}\n {redirect=''404''}\n{/if}\n\n{!-- page vars (prefix p_) --}\n{preload_replace:p_title=''contact {site_name}''}\n{preload_replace:p_description=''contact {site_name}''}\n{preload_replace:p_url=''contact''}\n{!-- channel vars (prefix ch_) --}\n{preload_replace:ch=''contact''}\n{preload_replace:ch_disable=''categories|category_fields|member_data|pagination''}\n{!-- layout vars, channel/page related --}\n{layout:set name=''ch'' value=''{ch}''}\n{layout:set name=''p_url'' value=''{p_url}''}\n{layout:set name=''p_title'' value=''{p_title}''}\n{layout:set name=''ch_disable'' value=''{ch_disable}''}\n\n {exp:channel:entries channel=''{ch}'' disable=''{ch_disable}'' limit=''1''}\n {!-- layout vars, dynamic, not output --}\n {layout:set name=''title'' value=''{seo_title}{gv_sep}''}\n {layout:set name=''description'' value=''{seo_desc}''}\n {!-- OpenGraph meta output --}\n {layout:set name=''og_title'' value=''{seo_title}''}\n {layout:set name=''og_url''}{path=''{p_url}''}{/layout:set}\n {layout:set name=''og_description'' value=''{seo_desc}''}\n {!-- /layout vars, dynamic, not output --}\n\n {!-- content output --}\n

{title} Required Fields ✱

\n {!-- page_content is a textarea with HTML output we don''t need to wrap this tag with HTML as that is already included in it''s output. --}\n {page_content}\n {!-- /content output --}\n\n {!--\n no results redirect\n ===================\n If the page doesn''t exist, we redirect to 404.\n --}\n {if no_results}\n {redirect=''404''}\n {/if}\n {/exp:channel:entries}\n\n
\n {!-- only show this thank you message if segment_2 is thanks --}\n {if segment_2 == ''thanks''}\n
\n

email sent

\n

Thanks, your email was sent, we''ll respond in 48 hours or less.

\n ✕ Close\n
\n {/if}\n {!-- email contact form --}\n\n {exp:email:contact_form form_class=''contact-form'' return=''{site_url}index.php/{p_url}/thanks'' redirect=''0''}\n
\n
\n \n What do you want to be called?\n
\n
\n \n
\n
\n
\n
\n \n How do we contact you?\n
\n
\n \n
\n
\n
\n
\n \n What did you want to discuss?\n
\n
\n \n
\n
\n
\n
\n \n Please keep it kind, brief and courteous.\n
\n
\n \n
\n
\n
\n \n
\n {/exp:email:contact_form}\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (9, 1, 4, 'index', 'webpage', NULL, '{layout=''layouts/_about-layout''}\n\n{!--\n 404 redirect\n ============\n This is a multi-entry channel page, it doesn''t need third segment as is. So we use the following code to make sure the page sends a 404 if someone types in an incorrect URL in the browser address bar. i.e. http://example.com/about/sub-page/nothing\n--}\n{if segment_3}\n {redirect=''404''}\n{/if}\n\n{!-- page vars (prefix p_) --}\n{preload_replace:p_title=''about {site_name}''}\n{preload_replace:p_description=''about {site_name}''}\n{preload_replace:p_url=''about''}\n{!-- channel vars (prefix ch_) --}\n{preload_replace:ch=''about''}\n{preload_replace:ch_status=''Open|Default Page''}\n{preload_replace:ch_disable=''categories|category_fields|member_data|pagination''}\n{!-- layout vars, channel/page related --}\n{layout:set name=''ch'' value=''{ch}''}\n{layout:set name=''p_url'' value=''{p_url}''}\n{layout:set name=''p_title'' value=''{p_title}''}\n{layout:set name=''ch_disable'' value=''{ch_disable}''}\n{layout:set name=''ch_status'' value=''{ch_status}''}\n{if segment_2}{layout:set name=''entry_ch'' value=''{ch}''}{/if}\n\n {!-- channel entries tag --}\n {exp:channel:entries channel=''{ch}'' disable=''{ch_disable}'' limit=''1''{if segment_2} require_entry=''yes''{if:else} status=''Default Page''{/if}}\n {!-- layout vars, dynamic, not output --}\n {layout:set name=''title'' value=''{if seo_title}{seo_title}{if:else}{p_title}{/if}{gv_sep}''}\n {layout:set name=''description'' value=''{if seo_desc}{seo_desc}{if:else}{p_description}{/if}''}\n {!-- OpenGraph meta output --}\n {layout:set name=''og_title'' value=''{if seo_title}{seo_title}{if:else}{p_title}{/if}''}\n {layout:set name=''og_url''}{path=''{p_url}''}{/layout:set}\n {layout:set name=''og_description'' value=''{if seo_desc}{seo_desc}{if:else}{p_description}{/if}''}\n {!-- /layout vars, dynamic, not output --}\n\n {!-- content output --}\n

{title}

\n {!-- about_image is a grid field first we check to see if it exists then we output it''s contents. --}\n {if about_image}\n {about_image}\n
\n {about_image:caption:attr_safe}\n
{about_image:caption}
\n
\n {/about_image}\n {/if}\n {!-- page_content is a textarea with HTML output we don''t need to wrap this tag with HTML as that is already included in it''s output. --}\n {page_content}\n {!-- /content output --}\n\n {!--\n no results redirect\n ===================\n If the entry doesn''t exist, we redirect to 404. This works in tandem with the require_entry=''yes'' parameter on the channel entries tag.\n --}\n {if no_results}\n {redirect=''404''}\n {/if}\n {/exp:channel:entries}\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (10, 1, 5, 'index', 'webpage', NULL, '{layout=''layouts/_html-wrapper''}\n\n{!-- page vars (prefix p_) --}\n{preload_replace:p_url=''blog''}\n{preload_replace:p_url_entry=''entry''}\n{!-- channel vars (prefix ch_) --}\n{preload_replace:ch=''blog''}\n{preload_replace:ch_disable=''category_fields|member_data''}\n\n{layout:set name=''scripts''}{/layout:set}\n\n
\n
\n
\n {!-- slideshow images from a specific directory, and category --}\n {exp:file:entries directory_id=''7'' dynamic=''no'' limit=''5'' disable=''pagination'' category=''not 25''}\n {file_name:attr_safe}\n {if count == 1}\n
\n \n \n
\n {/if}\n {/exp:file:entries}\n
\n

Recent Blog Posts All Posts

\n
\n
\n
\n {exp:channel:entries channel=''{ch}'' disable=''{ch_disable}'' limit=''4''}\n {!-- listing as a snippet, as it''s used through more than one template --}\n {snp_blog_list}\n {!-- no results --}\n {if no_results}\n
\n

{gv_entries_none}

\n
\n {/if}\n {/exp:channel:entries}\n
\n
\n
\n
\n {!-- using the offset='''' parameter here to start the listing on the 5th item. which allows us to split it into two columns without any wonky math --}\n {exp:channel:entries channel=''{ch}'' disable=''{ch_disable}'' limit=''4'' offset=''4''}\n {!-- listing as a snippet, as it''s used through more than one template --}\n {snp_blog_list}\n {!-- no results --}\n {if no_results}\n
\n

{gv_entries_none}

\n
\n {/if}\n {/exp:channel:entries}\n
\n
\n
\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (11, 1, 5, '404', 'webpage', NULL, '{layout=''layouts/_html-wrapper''}\n\n
\n
\n
\n Doing Business!\n
\n
\n
\n

404 — Page Not Found

\n

Super sorry about that, but the page you are trying to access is nowhere to be found.

\n

We searched our whole desk.

\n
\n
\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (12, 1, 6, '_html-wrapper', 'webpage', NULL, '\n\n \n \n {layout:title}{site_name}\n \n\n \n {if layout:meta_author}{/if}\n {if layout:meta_description}{/if}\n\n \n \n \n {!-- square, 50*50 min --}\n\n {if layout:og_title != ''''}\n \n \n \n \n {/if}\n\n \n \n \n \n
\n
\n
\n

{site_name} Website

\n
\n
\n {!-- creates a small menu link on smaller devices --}\n \n {!-- appears in both header and footer, so a snippet is used to keep it DRY --}\n {snp_main_nav}\n
\n
\n
\n\n {layout:breadcrumbs}\n\n
\n {layout:contents}\n
\n\n \n
\n \n \n \n {layout:scripts}\n \n\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (13, 1, 6, '_contact-layout', 'webpage', NULL, '{layout=''layouts/_html-wrapper''}\n\n{!-- embed for breadcrumb, needed to pass arguments (embeds aren''t evil) --}\n{layout:set name=''breadcrumbs''}\n {embed=''common/_breadcrumb''\n p_url=''{layout:p_url}''\n p_title=''{layout:p_title}''\n }\n{/layout:set}\n\n{layout:set name=''scripts''}\n \n {layout:scripts}\n{/layout:set}\n\n
\n
\n {layout:contents}\n
\n
\n {!-- output contact info --}\n {exp:channel:entries channel=''{layout:ch}'' disable=''{layout:ch_disable}'' limit=''1'' dynamic=''no''}\n
\n {site_name}\n {if contact_address}\n {contact_address}\n \n {contact_address:street}, {contact_address:street_2}
\n {contact_address:city}, {contact_address:state} {contact_address:zip}\n
\n {/contact_address}\n {/if}\n {if contact_phone OR contact_email}\n \n {if contact_phone}{contact_phone}{/if}\n {if contact_phone AND contact_email}
{/if}\n {if contact_email}{contact_email}{/if}\n
\n {/if}\n
\n {/exp:channel:entries}\n
\n
\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (14, 1, 6, '_about-layout', 'webpage', NULL, '{layout=''layouts/_html-wrapper''}\n\n{!-- embed for breadcrumb, needed to pass arguments (embeds aren''t evil) --}\n{layout:set name=''breadcrumbs''}\n {embed=''common/_breadcrumb''\n p_url=''{layout:p_url}''\n p_title=''{layout:p_title}''\n {if layout:entry_ch}entry_ch=''{layout:entry_ch}''{/if}\n }\n{/layout:set}\n\n
\n
\n {layout:contents}\n
\n
\n \n
\n
', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (15, 1, 6, '_blog-layout', 'webpage', NULL, '{layout=''layouts/_html-wrapper''}\n\n{!-- page vars (prefix p_) --}\n{preload_replace:p_url_cat=''category''}\n\n{!-- embed for breadcrumb, needed to pass arguments (embeds aren''t evil) --}\n{layout:set name=''breadcrumbs''}\n {embed=''common/_breadcrumb''\n p_url=''{layout:p_url}''\n p_title=''{layout:p_title}''\n {if layout:entry_ch}entry_ch=''{layout:entry_ch}''{/if}\n {if layout:search}search=''{layout:search}''{/if}\n {if layout:cat_ch}cat_ch=''{layout:cat_ch}''{/if}\n }\n{/layout:set}\n\n{layout:set name=''scripts''}\n \n {layout:scripts}\n{/layout:set}\n\n
\n
\n {layout:contents}\n
\n
\n \n\n
\n
\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (16, 1, 7, '_footer', 'webpage', NULL, ' \n \n \n \n \n \n\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (17, 1, 7, '_layout', 'webpage', NULL, '{!-- template vars --}\n{!-- used double quotes in this one file, as og_url required it :( --}\n{preload_replace:t_inc="common/"}\n\n{!-- embed the header --}\n{embed="{t_inc}_header"\n title="{layout:title}"\n desc="{layout:desc}"\n {if layout:ogtitle}\n ogtitle="{layout:ogtitle}"\n og_url="{layout:og_url}"\n og_description="{layout:og_description}"\n {/if}\n}\n\n{!-- cALL the content --}\n{layout:contents}\n\n{!-- embed the footer --}\n{embed="{t_inc}_footer"}', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (18, 1, 7, 'index', 'webpage', NULL, '{!-- nothing to see here, so we redirect the users if they land on http://example.com/common/ --}\n{redirect=''/''}', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (19, 1, 7, '_header', 'webpage', NULL, '\n\n \n {layout:title}{site_name}\n \n \n \n \n \n \n \n \n {!-- square, 50*50 min --}\n \n\n {if layout:og_title != ''''}\n \n \n \n \n {/if}\n\n \n \n \n \n \n
\n
\n
\n

{site_name} Website

\n
\n
\n {!-- appears in both header and footer, so a snippet is used to keep it DRY --}\n {snp_main_nav}\n
\n
\n
\n', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'), (20, 1, 7, '_breadcrumb', 'webpage', NULL, ' ', NULL, [[timestamp]], 0, 'n', 0, '', 'n', 'n', 'o', 0, 'n', 'y'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]templates_roles` -- CREATE TABLE `[[dbprefix]]templates_roles` ( `role_id` int(10) unsigned NOT NULL, `template_id` int(10) unsigned NOT NULL, PRIMARY KEY (`template_id`,`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `[[dbprefix]]templates_roles` -- INSERT INTO `[[dbprefix]]templates_roles` VALUES (1, 1), (2, 1), (3, 1), (4, 1), (5, 1), (1, 2), (2, 2), (3, 2), (4, 2), (5, 2), (1, 3), (2, 3), (3, 3), (4, 3), (5, 3), (1, 4), (2, 4), (3, 4), (4, 4), (5, 4), (1, 5), (2, 5), (3, 5), (4, 5), (5, 5), (1, 6), (2, 6), (3, 6), (4, 6), (5, 6), (1, 7), (2, 7), (3, 7), (4, 7), (5, 7), (1, 8), (2, 8), (3, 8), (4, 8), (5, 8), (1, 9), (2, 9), (3, 9), (4, 9), (5, 9), (1, 10), (2, 10), (3, 10), (4, 10), (5, 10), (1, 11), (2, 11), (3, 11), (4, 11), (5, 11), (1, 12), (2, 12), (3, 12), (4, 12), (5, 12), (1, 13), (2, 13), (3, 13), (4, 13), (5, 13), (1, 14), (2, 14), (3, 14), (4, 14), (5, 14), (1, 15), (2, 15), (3, 15), (4, 15), (5, 15), (1, 16), (2, 16), (3, 16), (4, 16), (5, 16), (1, 17), (2, 17), (3, 17), (4, 17), (5, 17), (1, 18), (2, 18), (3, 18), (4, 18), (5, 18), (1, 19), (2, 19), (3, 19), (4, 19), (5, 19), (1, 20), (2, 20), (3, 20), (4, 20), (5, 20); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]template_groups` -- CREATE TABLE `[[dbprefix]]template_groups` ( `group_id` int(6) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `group_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `group_order` int(3) unsigned NOT NULL, `is_site_default` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', PRIMARY KEY (`group_id`), KEY `site_id` (`site_id`), KEY `group_name_idx` (`group_name`), KEY `group_order_idx` (`group_order`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=8 ; -- -- Dumping data for table `[[dbprefix]]template_groups` -- INSERT INTO `[[dbprefix]]template_groups` VALUES (1, 1, 'pro-dashboard-widgets', 1, 'n'), (2, 1, 'blog', 2, 'n'), (3, 1, 'contact', 3, 'n'), (4, 1, 'about', 4, 'n'), (5, 1, 'home', 5, 'y'), (6, 1, 'layouts', 6, 'n'), (7, 1, 'common', 7, 'n'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]template_groups_roles` -- CREATE TABLE `[[dbprefix]]template_groups_roles` ( `role_id` int(10) unsigned NOT NULL, `template_group_id` mediumint(5) unsigned NOT NULL, PRIMARY KEY (`role_id`,`template_group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]template_routes` -- CREATE TABLE `[[dbprefix]]template_routes` ( `route_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `template_id` int(10) unsigned NOT NULL, `order` int(10) unsigned DEFAULT NULL, `route` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `route_parsed` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `route_required` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', PRIMARY KEY (`route_id`), KEY `template_id` (`template_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]throttle` -- CREATE TABLE `[[dbprefix]]throttle` ( `throttle_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `last_activity` int(10) unsigned NOT NULL DEFAULT '0', `hits` int(10) unsigned NOT NULL, `locked_out` char(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', PRIMARY KEY (`throttle_id`), KEY `ip_address` (`ip_address`), KEY `last_activity` (`last_activity`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]update_log` -- CREATE TABLE `[[dbprefix]]update_log` ( `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `timestamp` int(10) unsigned DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `line` int(10) unsigned DEFAULT NULL, `file` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`log_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=3 ; -- -- Dumping data for table `[[dbprefix]]update_log` -- INSERT INTO `[[dbprefix]]update_log` VALUES (1, [[timestamp]], 'Smartforge::add_key failed. Table ''[[dbprefix]]comments'' does not exist.', 'Smartforge::add_key', 106, '[[softpath]]/system/ee/ExpressionEngine/Addons/comment/upd.comment.php'), (2, [[timestamp]], 'Smartforge::add_key failed. Table ''[[dbprefix]]dock_prolets'' does not exist.', 'Smartforge::add_key', 210, '[[softpath]]/system/ee/ExpressionEngine/Addons/pro/upd.pro.php'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]upload_prefs` -- CREATE TABLE `[[dbprefix]]upload_prefs` ( `id` int(4) unsigned NOT NULL AUTO_INCREMENT, `site_id` int(4) unsigned NOT NULL DEFAULT '1', `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `adapter` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'local', `adapter_settings` text COLLATE utf8mb4_unicode_ci, `server_path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `allowed_types` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'img', `allow_subfolders` enum('y','n') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'n', `subfolders_on_top` enum('y','n') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'y', `default_modal_view` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'list', `max_size` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `max_height` varchar(6) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `max_width` varchar(6) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `properties` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pre_format` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `post_format` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_properties` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_pre_format` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_post_format` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cat_group` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `batch_location` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_id` int(4) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `site_id` (`site_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=7 ; -- -- Dumping data for table `[[dbprefix]]upload_prefs` -- INSERT INTO `[[dbprefix]]upload_prefs` VALUES (1, 1, 'Avatars', 'local', NULL, '{base_path}images/avatars/', '{base_url}images/avatars/', 'img', 'n', 'y', 'list', '50', '100', '100', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1), (2, 1, 'Signature Attachments', 'local', NULL, '{base_path}images/signature_attachments/', '{base_url}images/signature_attachments/', 'img', 'n', 'y', 'list', '30', '80', '480', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1), (3, 1, 'PM Attachments', 'local', NULL, '{base_path}images/pm_attachments/', '{base_url}images/pm_attachments/', 'img', 'n', 'y', 'list', '250', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1), (4, 1, 'Blog', 'local', NULL, '{base_path}themes/user/site/default/asset/img/blog/', '{base_url}themes/user/site/default/asset/img/blog/', 'img', 'n', 'y', 'list', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0), (5, 1, 'Common', 'local', NULL, '{base_path}themes/user/site/default/asset/img/common/', '{base_url}themes/user/site/default/asset/img/common/', 'img', 'n', 'y', 'list', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0), (6, 1, 'Home', 'local', NULL, '{base_path}themes/user/site/default/asset/img/home/', '{base_url}themes/user/site/default/asset/img/home/', 'img', 'n', 'y', 'list', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]upload_prefs_category_groups` -- CREATE TABLE `[[dbprefix]]upload_prefs_category_groups` ( `upload_location_id` int(4) unsigned NOT NULL, `group_id` int(6) unsigned NOT NULL, PRIMARY KEY (`upload_location_id`,`group_id`), KEY `group_id` (`group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]upload_prefs_roles` -- CREATE TABLE `[[dbprefix]]upload_prefs_roles` ( `role_id` int(10) unsigned NOT NULL, `upload_id` int(4) unsigned NOT NULL, PRIMARY KEY (`upload_id`,`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!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 */;