-- MySQL dump 10.13 Distrib 5.7.27, for Linux (x86_64)
--
-- Host: localhost Database: own_workshopgitlabacceptance
-- ------------------------------------------------------
-- Server version 5.7.27-0ubuntu0.18.04.1-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `backend_layout`
--
DROP TABLE IF EXISTS `backend_layout`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `backend_layout` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`crdate` int(10) unsigned NOT NULL DEFAULT '0',
`cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
`deleted` smallint(5) unsigned NOT NULL DEFAULT '0',
`hidden` smallint(5) unsigned NOT NULL DEFAULT '0',
`sorting` int(11) NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci,
`t3_origuid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_state` smallint(6) NOT NULL DEFAULT '0',
`t3ver_stage` int(11) NOT NULL DEFAULT '0',
`t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`config` text COLLATE utf8mb4_unicode_ci NOT NULL,
`icon` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `backend_layout`
--
LOCK TABLES `backend_layout` WRITE;
/*!40000 ALTER TABLE `backend_layout` DISABLE KEYS */;
/*!40000 ALTER TABLE `backend_layout` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `be_groups`
--
DROP TABLE IF EXISTS `be_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `be_groups` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`crdate` int(10) unsigned NOT NULL DEFAULT '0',
`cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
`deleted` smallint(5) unsigned NOT NULL DEFAULT '0',
`hidden` smallint(5) unsigned NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci,
`title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`non_exclude_fields` text COLLATE utf8mb4_unicode_ci,
`explicit_allowdeny` text COLLATE utf8mb4_unicode_ci,
`allowed_languages` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`custom_options` text COLLATE utf8mb4_unicode_ci,
`db_mountpoints` text COLLATE utf8mb4_unicode_ci,
`pagetypes_select` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tables_select` text COLLATE utf8mb4_unicode_ci,
`tables_modify` text COLLATE utf8mb4_unicode_ci,
`groupMods` text COLLATE utf8mb4_unicode_ci,
`file_mountpoints` text COLLATE utf8mb4_unicode_ci,
`file_permissions` text COLLATE utf8mb4_unicode_ci,
`lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`TSconfig` text COLLATE utf8mb4_unicode_ci,
`subgroup` text COLLATE utf8mb4_unicode_ci,
`workspace_perms` smallint(6) NOT NULL DEFAULT '1',
`category_perms` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `be_groups`
--
LOCK TABLES `be_groups` WRITE;
/*!40000 ALTER TABLE `be_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `be_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `be_sessions`
--
DROP TABLE IF EXISTS `be_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `be_sessions` (
`ses_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`ses_iplock` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`ses_userid` int(10) unsigned NOT NULL DEFAULT '0',
`ses_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`ses_data` longblob,
`ses_backuserid` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`ses_id`),
KEY `ses_tstamp` (`ses_tstamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `be_users`
--
DROP TABLE IF EXISTS `be_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `be_users` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`crdate` int(10) unsigned NOT NULL DEFAULT '0',
`cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
`deleted` smallint(5) unsigned NOT NULL DEFAULT '0',
`disable` smallint(5) unsigned NOT NULL DEFAULT '0',
`starttime` int(10) unsigned NOT NULL DEFAULT '0',
`endtime` int(10) unsigned NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci,
`username` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`avatar` int(10) unsigned NOT NULL DEFAULT '0',
`password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`admin` smallint(5) unsigned NOT NULL DEFAULT '0',
`usergroup` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`lang` varchar(6) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`db_mountpoints` text COLLATE utf8mb4_unicode_ci,
`options` smallint(5) unsigned NOT NULL DEFAULT '0',
`realName` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`userMods` text COLLATE utf8mb4_unicode_ci,
`allowed_languages` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`uc` mediumblob,
`file_mountpoints` text COLLATE utf8mb4_unicode_ci,
`file_permissions` text COLLATE utf8mb4_unicode_ci,
`workspace_perms` smallint(6) NOT NULL DEFAULT '1',
`lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`disableIPlock` smallint(5) unsigned NOT NULL DEFAULT '0',
`TSconfig` text COLLATE utf8mb4_unicode_ci,
`lastlogin` int(10) unsigned NOT NULL DEFAULT '0',
`createdByAction` int(11) NOT NULL DEFAULT '0',
`usergroup_cached_list` text COLLATE utf8mb4_unicode_ci,
`workspace_id` int(11) NOT NULL DEFAULT '0',
`category_perms` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`uid`),
KEY `username` (`username`),
KEY `parent` (`pid`,`deleted`,`disable`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `be_users`
--
LOCK TABLES `be_users` WRITE;
/*!40000 ALTER TABLE `be_users` DISABLE KEYS */;
INSERT INTO `be_users` VALUES (1,0,1566399565,1566399565,0,0,0,0,0,NULL,'dsiepmann',0,'$argon2i$v=19$m=65536,t=16,p=2$T2pmbUd5d29zYVBuV2dWdg$dhzQXuW8Opu6YZZfy9R4+KDNAPfKn+dOiHFCdGESmtY',1,'','','',NULL,0,'',NULL,'',_binary 'a:17:{s:14:\"interfaceSetup\";s:0:\"\";s:10:\"moduleData\";a:10:{s:10:\"web_layout\";a:2:{s:8:\"function\";s:1:\"1\";s:8:\"language\";s:1:\"0\";}s:8:\"web_list\";a:0:{}s:10:\"FormEngine\";a:2:{i:0;a:6:{s:32:\"696addfecc296b326ff6e9f04c7ff3e1\";a:4:{i:0;s:4:\"Home\";i:1;a:6:{s:4:\"edit\";a:1:{s:5:\"pages\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:28:\"&edit%5Bpages%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:5:\"pages\";s:3:\"uid\";i:1;s:3:\"pid\";i:0;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"a9a6057797db87f88ceebe9eef404c91\";a:4:{i:0;s:14:\"Example plugin\";i:1;a:6:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";a:1:{s:10:\"tt_content\";a:4:{s:6:\"colPos\";s:1:\"0\";s:16:\"sys_language_uid\";s:1:\"0\";s:5:\"CType\";s:4:\"list\";s:9:\"list_type\";s:26:\"exampleextension_pluginkey\";}}s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:225:\"&edit%5Btt_content%5D%5B1%5D=edit&defVals%5Btt_content%5D%5BcolPos%5D=0&defVals%5Btt_content%5D%5Bsys_language_uid%5D=0&defVals%5Btt_content%5D%5BCType%5D=list&defVals%5Btt_content%5D%5Blist_type%5D=exampleextension_pluginkey\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"86205c5935270b8ee413592ec1b62292\";a:4:{i:0;s:25:\"Main TypoScript Rendering\";i:1;a:6:{s:4:\"edit\";a:1:{s:12:\"sys_template\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:35:\"&edit%5Bsys_template%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:12:\"sys_template\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"c312013d83c1a6ad7fec8b36a37ba3c8\";a:4:{i:0;s:14:\"Example plugin\";i:1;a:6:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"76f7d9677d1a94636ccbb1386719b9bd\";a:4:{i:0;s:21:\"TYPO3 Camp Rhein Ruhr\";i:1;a:6:{s:4:\"edit\";a:1:{s:40:\"tx_exampleextension_domain_model_address\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:63:\"&edit%5Btx_exampleextension_domain_model_address%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:40:\"tx_exampleextension_domain_model_address\";s:3:\"uid\";i:1;s:3:\"pid\";i:2;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"20ed475662b97ac33d3aa853a74f9c9c\";a:4:{i:0;s:9:\"addresses\";i:1;a:6:{s:4:\"edit\";a:1:{s:5:\"pages\";a:1:{i:2;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:28:\"&edit%5Bpages%5D%5B2%5D=edit\";i:3;a:5:{s:5:\"table\";s:5:\"pages\";s:3:\"uid\";i:2;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}}i:1;s:32:\"76f7d9677d1a94636ccbb1386719b9bd\";}s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";a:0:{}s:6:\"web_ts\";a:8:{s:8:\"function\";s:87:\"TYPO3\\CMS\\Tstemplate\\Controller\\TypoScriptTemplateObjectBrowserModuleFunctionController\";s:19:\"constant_editor_cat\";s:0:\"\";s:15:\"ts_browser_type\";s:5:\"setup\";s:16:\"ts_browser_const\";s:5:\"subst\";s:19:\"ts_browser_fixedLgd\";s:1:\"0\";s:23:\"ts_browser_showComments\";s:1:\"1\";s:20:\"ts_browser_alphaSort\";s:1:\"1\";s:25:\"tsbrowser_depthKeys_setup\";a:4:{s:10:\"tt_content\";i:1;s:15:\"tt_content.list\";i:1;s:18:\"tt_content.list.20\";i:1;s:43:\"tt_content.list.20.exampleextension_address\";i:1;}}s:8:\"web_info\";a:2:{s:8:\"function\";s:60:\"TYPO3\\CMS\\Info\\Controller\\InfoPageTyposcriptConfigController\";s:12:\"tsconf_parts\";s:1:\"0\";}s:16:\"opendocs::recent\";a:2:{s:32:\"76f7d9677d1a94636ccbb1386719b9bd\";a:4:{i:0;s:13:\"Codappix GmbH\";i:1;a:6:{s:4:\"edit\";a:1:{s:40:\"tx_exampleextension_domain_model_address\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:63:\"&edit%5Btx_exampleextension_domain_model_address%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:40:\"tx_exampleextension_domain_model_address\";s:3:\"uid\";i:1;s:3:\"pid\";i:2;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"c312013d83c1a6ad7fec8b36a37ba3c8\";a:4:{i:0;s:14:\"Example plugin\";i:1;a:6:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}}s:13:\"system_config\";a:3:{s:4:\"tree\";s:3:\"tca\";s:11:\"regexSearch\";b:0;s:8:\"node_tca\";a:6:{s:10:\"tt_content\";i:1;s:16:\"tt_content.types\";i:1;s:41:\"tt_content.types.exampleextension_address\";i:1;s:24:\"tt_content.types.bullets\";i:1;s:32:\"tt_content.ctrl.typeicon_classes\";i:1;s:21:\"tt_content.types.list\";i:1;}}s:16:\"browse_links.php\";a:1:{s:10:\"expandPage\";s:1:\"1\";}s:9:\"clipboard\";a:5:{s:6:\"normal\";a:2:{s:2:\"el\";a:0:{}s:4:\"mode\";s:0:\"\";}s:5:\"tab_1\";a:0:{}s:5:\"tab_2\";a:0:{}s:5:\"tab_3\";a:0:{}s:7:\"current\";s:6:\"normal\";}}s:19:\"thumbnailsByDefault\";i:1;s:14:\"emailMeAtLogin\";i:0;s:11:\"startModule\";s:15:\"help_AboutAbout\";s:8:\"titleLen\";i:50;s:8:\"edit_RTE\";s:1:\"1\";s:20:\"edit_docModuleUpload\";s:1:\"1\";s:15:\"resizeTextareas\";i:1;s:25:\"resizeTextareas_MaxHeight\";i:500;s:24:\"resizeTextareas_Flexible\";i:0;s:4:\"lang\";s:0:\"\";s:19:\"firstLoginTimeStamp\";i:1566399603;s:15:\"moduleSessionID\";a:9:{s:10:\"web_layout\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:8:\"web_list\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:10:\"FormEngine\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:6:\"web_ts\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:8:\"web_info\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:16:\"opendocs::recent\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:16:\"browse_links.php\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:9:\"clipboard\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";}s:10:\"inlineView\";s:72:\"a:1:{s:4:\"site\";a:1:{i:1;a:1:{s:13:\"site_language\";a:1:{i:0;s:1:\"0\";}}}}\";s:17:\"BackendComponents\";a:1:{s:6:\"States\";a:1:{s:8:\"Pagetree\";a:1:{s:9:\"stateHash\";a:1:{s:3:\"0_1\";s:1:\"1\";}}}}s:11:\"browseTrees\";a:1:{s:11:\"browsePages\";s:32:\"a:1:{i:0;a:2:{i:0;i:1;i:1;i:1;}}\";}}',NULL,NULL,1,'',0,NULL,1566399603,0,NULL,0,NULL),(2,0,1566399575,1566399575,0,0,0,0,0,NULL,'_cli_',0,'$argon2i$v=19$m=65536,t=16,p=2$M2ovSHFDbi9tdlhCNWxSMA$rWNqC5yCk1bb7vxtVXl0Q+zWv4YIm9pGz6P0Cb0w8Mk',1,'','','',NULL,0,'',NULL,'',_binary 'a:13:{s:14:\"interfaceSetup\";s:0:\"\";s:10:\"moduleData\";a:0:{}s:19:\"thumbnailsByDefault\";i:1;s:14:\"emailMeAtLogin\";i:0;s:11:\"startModule\";s:15:\"help_AboutAbout\";s:8:\"titleLen\";i:50;s:8:\"edit_RTE\";s:1:\"1\";s:20:\"edit_docModuleUpload\";s:1:\"1\";s:15:\"resizeTextareas\";i:1;s:25:\"resizeTextareas_MaxHeight\";i:500;s:24:\"resizeTextareas_Flexible\";i:0;s:4:\"lang\";s:0:\"\";s:19:\"firstLoginTimeStamp\";i:1566399575;}',NULL,NULL,1,'',0,NULL,0,0,NULL,0,NULL);
/*!40000 ALTER TABLE `be_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache_treelist`
--
DROP TABLE IF EXISTS `cache_treelist`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_treelist` (
`md5hash` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`pid` int(11) NOT NULL DEFAULT '0',
`treelist` mediumtext COLLATE utf8mb4_unicode_ci,
`tstamp` int(11) NOT NULL DEFAULT '0',
`expires` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`md5hash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache_treelist`
--
LOCK TABLES `cache_treelist` WRITE;
/*!40000 ALTER TABLE `cache_treelist` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_treelist` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cf_cache_hash`
--
DROP TABLE IF EXISTS `cf_cache_hash`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cf_cache_hash` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`expires` int(10) unsigned NOT NULL DEFAULT '0',
`content` longblob,
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(180),`expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cf_cache_hash`
--
LOCK TABLES `cf_cache_hash` WRITE;
/*!40000 ALTER TABLE `cf_cache_hash` DISABLE KEYS */;
/*!40000 ALTER TABLE `cf_cache_hash` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cf_cache_hash_tags`
--
DROP TABLE IF EXISTS `cf_cache_hash_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cf_cache_hash_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(191)),
KEY `cache_tag` (`tag`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cf_cache_hash_tags`
--
LOCK TABLES `cf_cache_hash_tags` WRITE;
/*!40000 ALTER TABLE `cf_cache_hash_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `cf_cache_hash_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cf_cache_imagesizes`
--
DROP TABLE IF EXISTS `cf_cache_imagesizes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cf_cache_imagesizes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`expires` int(10) unsigned NOT NULL DEFAULT '0',
`content` longblob,
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(180),`expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cf_cache_imagesizes`
--
LOCK TABLES `cf_cache_imagesizes` WRITE;
/*!40000 ALTER TABLE `cf_cache_imagesizes` DISABLE KEYS */;
/*!40000 ALTER TABLE `cf_cache_imagesizes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cf_cache_imagesizes_tags`
--
DROP TABLE IF EXISTS `cf_cache_imagesizes_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cf_cache_imagesizes_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(191)),
KEY `cache_tag` (`tag`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cf_cache_imagesizes_tags`
--
LOCK TABLES `cf_cache_imagesizes_tags` WRITE;
/*!40000 ALTER TABLE `cf_cache_imagesizes_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `cf_cache_imagesizes_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cf_cache_pages`
--
DROP TABLE IF EXISTS `cf_cache_pages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cf_cache_pages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`expires` int(10) unsigned NOT NULL DEFAULT '0',
`content` longblob,
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(180),`expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cf_cache_pages`
--
LOCK TABLES `cf_cache_pages` WRITE;
/*!40000 ALTER TABLE `cf_cache_pages` DISABLE KEYS */;
/*!40000 ALTER TABLE `cf_cache_pages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cf_cache_pages_tags`
--
DROP TABLE IF EXISTS `cf_cache_pages_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cf_cache_pages_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(191)),
KEY `cache_tag` (`tag`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cf_cache_pages_tags`
--
LOCK TABLES `cf_cache_pages_tags` WRITE;
/*!40000 ALTER TABLE `cf_cache_pages_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `cf_cache_pages_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cf_cache_pagesection`
--
DROP TABLE IF EXISTS `cf_cache_pagesection`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cf_cache_pagesection` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`expires` int(10) unsigned NOT NULL DEFAULT '0',
`content` longblob,
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(180),`expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cf_cache_pagesection`
--
LOCK TABLES `cf_cache_pagesection` WRITE;
/*!40000 ALTER TABLE `cf_cache_pagesection` DISABLE KEYS */;
/*!40000 ALTER TABLE `cf_cache_pagesection` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cf_cache_pagesection_tags`
--
DROP TABLE IF EXISTS `cf_cache_pagesection_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cf_cache_pagesection_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(191)),
KEY `cache_tag` (`tag`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cf_cache_pagesection_tags`
--
LOCK TABLES `cf_cache_pagesection_tags` WRITE;
/*!40000 ALTER TABLE `cf_cache_pagesection_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `cf_cache_pagesection_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cf_cache_rootline`
--
DROP TABLE IF EXISTS `cf_cache_rootline`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cf_cache_rootline` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`expires` int(10) unsigned NOT NULL DEFAULT '0',
`content` longblob,
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(180),`expires`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `cf_cache_rootline_tags`
--
DROP TABLE IF EXISTS `cf_cache_rootline_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cf_cache_rootline_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(191)),
KEY `cache_tag` (`tag`(191))
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `cf_extbase_datamapfactory_datamap`
--
DROP TABLE IF EXISTS `cf_extbase_datamapfactory_datamap`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cf_extbase_datamapfactory_datamap` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`expires` int(10) unsigned NOT NULL DEFAULT '0',
`content` longblob,
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(180),`expires`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `cf_extbase_datamapfactory_datamap_tags`
--
DROP TABLE IF EXISTS `cf_extbase_datamapfactory_datamap_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cf_extbase_datamapfactory_datamap_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `cache_id` (`identifier`(191)),
KEY `cache_tag` (`tag`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cf_extbase_datamapfactory_datamap_tags`
--
LOCK TABLES `cf_extbase_datamapfactory_datamap_tags` WRITE;
/*!40000 ALTER TABLE `cf_extbase_datamapfactory_datamap_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `cf_extbase_datamapfactory_datamap_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fe_groups`
--
DROP TABLE IF EXISTS `fe_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fe_groups` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`crdate` int(10) unsigned NOT NULL DEFAULT '0',
`cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
`deleted` smallint(5) unsigned NOT NULL DEFAULT '0',
`hidden` smallint(5) unsigned NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci,
`tx_extbase_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`subgroup` tinytext COLLATE utf8mb4_unicode_ci,
`TSconfig` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fe_groups`
--
LOCK TABLES `fe_groups` WRITE;
/*!40000 ALTER TABLE `fe_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `fe_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `fe_sessions`
--
DROP TABLE IF EXISTS `fe_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fe_sessions` (
`ses_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`ses_iplock` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`ses_userid` int(10) unsigned NOT NULL DEFAULT '0',
`ses_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`ses_data` mediumblob,
`ses_permanent` smallint(5) unsigned NOT NULL DEFAULT '0',
`ses_anonymous` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`ses_id`),
KEY `ses_tstamp` (`ses_tstamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `fe_users`
--
DROP TABLE IF EXISTS `fe_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `fe_users` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`crdate` int(10) unsigned NOT NULL DEFAULT '0',
`cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
`deleted` smallint(5) unsigned NOT NULL DEFAULT '0',
`disable` smallint(5) unsigned NOT NULL DEFAULT '0',
`starttime` int(10) unsigned NOT NULL DEFAULT '0',
`endtime` int(10) unsigned NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci,
`tx_extbase_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`usergroup` tinytext COLLATE utf8mb4_unicode_ci,
`name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`first_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`middle_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`last_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`telephone` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`fax` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`uc` blob,
`title` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`zip` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`city` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`country` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`www` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`company` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`image` tinytext COLLATE utf8mb4_unicode_ci,
`TSconfig` text COLLATE utf8mb4_unicode_ci,
`lastlogin` int(10) unsigned NOT NULL DEFAULT '0',
`is_online` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`username`(100)),
KEY `username` (`username`(100)),
KEY `is_online` (`is_online`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `fe_users`
--
LOCK TABLES `fe_users` WRITE;
/*!40000 ALTER TABLE `fe_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `fe_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pages`
--
DROP TABLE IF EXISTS `pages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pages` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`crdate` int(10) unsigned NOT NULL DEFAULT '0',
`cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
`deleted` smallint(5) unsigned NOT NULL DEFAULT '0',
`hidden` smallint(5) unsigned NOT NULL DEFAULT '0',
`starttime` int(10) unsigned NOT NULL DEFAULT '0',
`endtime` int(10) unsigned NOT NULL DEFAULT '0',
`fe_group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`sorting` int(11) NOT NULL DEFAULT '0',
`rowDescription` text COLLATE utf8mb4_unicode_ci,
`editlock` smallint(5) unsigned NOT NULL DEFAULT '0',
`sys_language_uid` int(11) NOT NULL DEFAULT '0',
`l10n_parent` int(10) unsigned NOT NULL DEFAULT '0',
`l10n_source` int(10) unsigned NOT NULL DEFAULT '0',
`l10n_state` text COLLATE utf8mb4_unicode_ci,
`t3_origuid` int(10) unsigned NOT NULL DEFAULT '0',
`l10n_diffsource` mediumblob,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_state` smallint(6) NOT NULL DEFAULT '0',
`t3ver_stage` int(11) NOT NULL DEFAULT '0',
`t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0',
`perms_userid` int(10) unsigned NOT NULL DEFAULT '0',
`perms_groupid` int(10) unsigned NOT NULL DEFAULT '0',
`perms_user` smallint(5) unsigned NOT NULL DEFAULT '0',
`perms_group` smallint(5) unsigned NOT NULL DEFAULT '0',
`perms_everybody` smallint(5) unsigned NOT NULL DEFAULT '0',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(2048) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`doktype` int(10) unsigned NOT NULL DEFAULT '0',
`TSconfig` text COLLATE utf8mb4_unicode_ci,
`is_siteroot` smallint(6) NOT NULL DEFAULT '0',
`php_tree_stop` smallint(6) NOT NULL DEFAULT '0',
`url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`shortcut` int(10) unsigned NOT NULL DEFAULT '0',
`shortcut_mode` int(10) unsigned NOT NULL DEFAULT '0',
`subtitle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`layout` int(10) unsigned NOT NULL DEFAULT '0',
`target` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`media` int(10) unsigned NOT NULL DEFAULT '0',
`lastUpdated` int(10) unsigned NOT NULL DEFAULT '0',
`keywords` text COLLATE utf8mb4_unicode_ci,
`cache_timeout` int(10) unsigned NOT NULL DEFAULT '0',
`cache_tags` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`newUntil` int(10) unsigned NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci,
`no_search` smallint(5) unsigned NOT NULL DEFAULT '0',
`SYS_LASTCHANGED` int(10) unsigned NOT NULL DEFAULT '0',
`abstract` text COLLATE utf8mb4_unicode_ci,
`module` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`extendToSubpages` smallint(5) unsigned NOT NULL DEFAULT '0',
`author` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`author_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`nav_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`nav_hide` smallint(6) NOT NULL DEFAULT '0',
`content_from_pid` int(10) unsigned NOT NULL DEFAULT '0',
`mount_pid` int(10) unsigned NOT NULL DEFAULT '0',
`mount_pid_ol` smallint(6) NOT NULL DEFAULT '0',
`alias` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`l18n_cfg` smallint(6) NOT NULL DEFAULT '0',
`fe_login_mode` smallint(6) NOT NULL DEFAULT '0',
`backend_layout` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`backend_layout_next_level` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tsconfig_includes` text COLLATE utf8mb4_unicode_ci,
`legacy_overlay_uid` int(10) unsigned NOT NULL DEFAULT '0',
`categories` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`),
KEY `alias` (`alias`),
KEY `determineSiteRoot` (`is_siteroot`),
KEY `language_identifier` (`l10n_parent`,`sys_language_uid`),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pages`
--
LOCK TABLES `pages` WRITE;
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
INSERT INTO `pages` VALUES (1,0,1566401415,1566399570,1,0,0,0,0,'',0,NULL,0,0,0,0,NULL,0,_binary 'a:37:{s:7:\"doktype\";N;s:5:\"title\";N;s:4:\"slug\";N;s:9:\"nav_title\";N;s:8:\"subtitle\";N;s:8:\"abstract\";N;s:8:\"keywords\";N;s:11:\"description\";N;s:6:\"author\";N;s:12:\"author_email\";N;s:11:\"lastUpdated\";N;s:6:\"layout\";N;s:8:\"newUntil\";N;s:14:\"backend_layout\";N;s:25:\"backend_layout_next_level\";N;s:16:\"content_from_pid\";N;s:6:\"target\";N;s:13:\"cache_timeout\";N;s:10:\"cache_tags\";N;s:11:\"is_siteroot\";N;s:9:\"no_search\";N;s:13:\"php_tree_stop\";N;s:6:\"module\";N;s:5:\"media\";N;s:17:\"tsconfig_includes\";N;s:8:\"TSconfig\";N;s:8:\"l18n_cfg\";N;s:6:\"hidden\";N;s:8:\"nav_hide\";N;s:9:\"starttime\";N;s:7:\"endtime\";N;s:16:\"extendToSubpages\";N;s:8:\"fe_group\";N;s:13:\"fe_login_mode\";N;s:8:\"editlock\";N;s:10:\"categories\";N;s:14:\"rowDescription\";N;}',0,0,'',0,0,0,0,0,0,1,1,31,31,1,'Home','/',1,NULL,1,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1566401415,NULL,'',0,'','','',0,0,0,0,'',0,0,'','',NULL,0,0),(2,1,1566402668,1566400573,1,0,0,0,0,'0',256,NULL,0,0,0,0,NULL,0,_binary 'a:13:{s:7:\"doktype\";N;s:5:\"title\";N;s:4:\"slug\";N;s:14:\"backend_layout\";N;s:25:\"backend_layout_next_level\";N;s:6:\"module\";N;s:5:\"media\";N;s:17:\"tsconfig_includes\";N;s:8:\"TSconfig\";N;s:6:\"hidden\";N;s:8:\"editlock\";N;s:10:\"categories\";N;s:14:\"rowDescription\";N;}',0,0,'',0,0,0,0,0,0,1,0,31,27,0,'addresses','/addresses',254,'TCEMAIN {\r\n clearCacheCmd = 3\r\n}',0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,'',0,0,'','',NULL,0,0),(3,1,1566401718,1566401700,1,0,0,0,0,'0',128,NULL,0,0,0,0,NULL,0,_binary 'a:1:{s:6:\"hidden\";N;}',0,0,'',0,0,0,0,0,0,1,0,31,27,0,'Plugin','/plugin',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1566401718,NULL,'',0,'','','',0,0,0,0,'',0,0,'','',NULL,0,0);
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_be_shortcuts`
--
DROP TABLE IF EXISTS `sys_be_shortcuts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_be_shortcuts` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userid` int(10) unsigned NOT NULL DEFAULT '0',
`module_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`url` text COLLATE utf8mb4_unicode_ci,
`description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`sorting` int(11) NOT NULL DEFAULT '0',
`sc_group` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`),
KEY `event` (`userid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_be_shortcuts`
--
LOCK TABLES `sys_be_shortcuts` WRITE;
/*!40000 ALTER TABLE `sys_be_shortcuts` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_be_shortcuts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_category`
--
DROP TABLE IF EXISTS `sys_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_category` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`crdate` int(10) unsigned NOT NULL DEFAULT '0',
`cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
`deleted` smallint(5) unsigned NOT NULL DEFAULT '0',
`hidden` smallint(5) unsigned NOT NULL DEFAULT '0',
`starttime` int(10) unsigned NOT NULL DEFAULT '0',
`endtime` int(10) unsigned NOT NULL DEFAULT '0',
`sorting` int(11) NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci,
`sys_language_uid` int(11) NOT NULL DEFAULT '0',
`l10n_parent` int(10) unsigned NOT NULL DEFAULT '0',
`l10n_state` text COLLATE utf8mb4_unicode_ci,
`t3_origuid` int(10) unsigned NOT NULL DEFAULT '0',
`l10n_diffsource` mediumblob,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_state` smallint(6) NOT NULL DEFAULT '0',
`t3ver_stage` int(11) NOT NULL DEFAULT '0',
`t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0',
`title` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` int(11) NOT NULL DEFAULT '0',
`items` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`),
KEY `category_parent` (`parent`),
KEY `category_list` (`pid`,`deleted`,`sys_language_uid`),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_category`
--
LOCK TABLES `sys_category` WRITE;
/*!40000 ALTER TABLE `sys_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_category_record_mm`
--
DROP TABLE IF EXISTS `sys_category_record_mm`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_category_record_mm` (
`uid_local` int(11) NOT NULL DEFAULT '0',
`uid_foreign` int(11) NOT NULL DEFAULT '0',
`tablenames` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`fieldname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`sorting` int(11) NOT NULL DEFAULT '0',
`sorting_foreign` int(11) NOT NULL DEFAULT '0',
KEY `uid_local_foreign` (`uid_local`,`uid_foreign`),
KEY `uid_foreign_tablefield` (`uid_foreign`,`tablenames`(40),`fieldname`(3),`sorting_foreign`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_category_record_mm`
--
LOCK TABLES `sys_category_record_mm` WRITE;
/*!40000 ALTER TABLE `sys_category_record_mm` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_category_record_mm` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_collection`
--
DROP TABLE IF EXISTS `sys_collection`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_collection` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`crdate` int(10) unsigned NOT NULL DEFAULT '0',
`cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
`deleted` smallint(5) unsigned NOT NULL DEFAULT '0',
`hidden` smallint(5) unsigned NOT NULL DEFAULT '0',
`starttime` int(10) unsigned NOT NULL DEFAULT '0',
`endtime` int(10) unsigned NOT NULL DEFAULT '0',
`fe_group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci,
`sys_language_uid` int(11) NOT NULL DEFAULT '0',
`l10n_parent` int(10) unsigned NOT NULL DEFAULT '0',
`l10n_state` text COLLATE utf8mb4_unicode_ci,
`t3_origuid` int(10) unsigned NOT NULL DEFAULT '0',
`l10n_diffsource` mediumblob,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_state` smallint(6) NOT NULL DEFAULT '0',
`t3ver_stage` int(11) NOT NULL DEFAULT '0',
`t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0',
`title` tinytext COLLATE utf8mb4_unicode_ci,
`type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'static',
`table_name` tinytext COLLATE utf8mb4_unicode_ci,
`items` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_collection`
--
LOCK TABLES `sys_collection` WRITE;
/*!40000 ALTER TABLE `sys_collection` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_collection` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_collection_entries`
--
DROP TABLE IF EXISTS `sys_collection_entries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_collection_entries` (
`uid` int(11) NOT NULL AUTO_INCREMENT,
`uid_local` int(11) NOT NULL DEFAULT '0',
`uid_foreign` int(11) NOT NULL DEFAULT '0',
`tablenames` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`sorting` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`),
KEY `uid_local` (`uid_local`),
KEY `uid_foreign` (`uid_foreign`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_collection_entries`
--
LOCK TABLES `sys_collection_entries` WRITE;
/*!40000 ALTER TABLE `sys_collection_entries` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_collection_entries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_domain`
--
DROP TABLE IF EXISTS `sys_domain`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_domain` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`crdate` int(10) unsigned NOT NULL DEFAULT '0',
`cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
`hidden` smallint(5) unsigned NOT NULL DEFAULT '0',
`sorting` int(11) NOT NULL DEFAULT '0',
`domainName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`uid`),
KEY `getSysDomain` (`hidden`),
KEY `getDomainStartPage` (`pid`,`hidden`,`domainName`(100)),
KEY `parent` (`pid`,`hidden`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_domain`
--
LOCK TABLES `sys_domain` WRITE;
/*!40000 ALTER TABLE `sys_domain` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_domain` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_file`
--
DROP TABLE IF EXISTS `sys_file`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_file` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`last_indexed` int(11) NOT NULL DEFAULT '0',
`missing` smallint(6) NOT NULL DEFAULT '0',
`storage` int(11) NOT NULL DEFAULT '0',
`type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`metadata` int(11) NOT NULL DEFAULT '0',
`identifier` text COLLATE utf8mb4_unicode_ci,
`identifier_hash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`folder_hash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`extension` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`mime_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`name` tinytext COLLATE utf8mb4_unicode_ci,
`sha1` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`size` bigint(20) unsigned NOT NULL DEFAULT '0',
`creation_date` int(11) NOT NULL DEFAULT '0',
`modification_date` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`),
KEY `sel01` (`storage`,`identifier_hash`),
KEY `folder` (`storage`,`folder_hash`),
KEY `tstamp` (`tstamp`),
KEY `lastindex` (`last_indexed`),
KEY `sha1` (`sha1`),
KEY `parent` (`pid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_file`
--
LOCK TABLES `sys_file` WRITE;
/*!40000 ALTER TABLE `sys_file` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_file` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_file_collection`
--
DROP TABLE IF EXISTS `sys_file_collection`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_file_collection` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`crdate` int(10) unsigned NOT NULL DEFAULT '0',
`cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
`deleted` smallint(5) unsigned NOT NULL DEFAULT '0',
`hidden` smallint(5) unsigned NOT NULL DEFAULT '0',
`starttime` int(10) unsigned NOT NULL DEFAULT '0',
`endtime` int(10) unsigned NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci,
`sys_language_uid` int(11) NOT NULL DEFAULT '0',
`l10n_parent` int(10) unsigned NOT NULL DEFAULT '0',
`l10n_state` text COLLATE utf8mb4_unicode_ci,
`t3_origuid` int(10) unsigned NOT NULL DEFAULT '0',
`l10n_diffsource` mediumblob,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_state` smallint(6) NOT NULL DEFAULT '0',
`t3ver_stage` int(11) NOT NULL DEFAULT '0',
`t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0',
`title` tinytext COLLATE utf8mb4_unicode_ci,
`type` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'static',
`files` int(11) NOT NULL DEFAULT '0',
`storage` int(11) NOT NULL DEFAULT '0',
`folder` text COLLATE utf8mb4_unicode_ci,
`recursive` smallint(6) NOT NULL DEFAULT '0',
`category` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_file_collection`
--
LOCK TABLES `sys_file_collection` WRITE;
/*!40000 ALTER TABLE `sys_file_collection` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_file_collection` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_file_metadata`
--
DROP TABLE IF EXISTS `sys_file_metadata`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_file_metadata` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`crdate` int(10) unsigned NOT NULL DEFAULT '0',
`cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
`sys_language_uid` int(11) NOT NULL DEFAULT '0',
`l10n_parent` int(10) unsigned NOT NULL DEFAULT '0',
`l10n_state` text COLLATE utf8mb4_unicode_ci,
`t3_origuid` int(10) unsigned NOT NULL DEFAULT '0',
`l10n_diffsource` mediumblob,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_state` smallint(6) NOT NULL DEFAULT '0',
`t3ver_stage` int(11) NOT NULL DEFAULT '0',
`t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0',
`file` int(11) NOT NULL DEFAULT '0',
`title` tinytext COLLATE utf8mb4_unicode_ci,
`width` int(11) NOT NULL DEFAULT '0',
`height` int(11) NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci,
`alternative` text COLLATE utf8mb4_unicode_ci,
`categories` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`),
KEY `file` (`file`),
KEY `fal_filelist` (`l10n_parent`,`sys_language_uid`),
KEY `parent` (`pid`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_file_metadata`
--
LOCK TABLES `sys_file_metadata` WRITE;
/*!40000 ALTER TABLE `sys_file_metadata` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_file_metadata` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_file_processedfile`
--
DROP TABLE IF EXISTS `sys_file_processedfile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_file_processedfile` (
`uid` int(11) NOT NULL AUTO_INCREMENT,
`tstamp` int(11) NOT NULL DEFAULT '0',
`crdate` int(11) NOT NULL DEFAULT '0',
`storage` int(11) NOT NULL DEFAULT '0',
`original` int(11) NOT NULL DEFAULT '0',
`identifier` varchar(512) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`name` tinytext COLLATE utf8mb4_unicode_ci,
`configuration` text COLLATE utf8mb4_unicode_ci,
`configurationsha1` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`originalfilesha1` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`task_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`checksum` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`width` int(11) DEFAULT '0',
`height` int(11) DEFAULT '0',
PRIMARY KEY (`uid`),
KEY `combined_1` (`original`,`task_type`(100),`configurationsha1`),
KEY `identifier` (`storage`,`identifier`(180))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_file_processedfile`
--
LOCK TABLES `sys_file_processedfile` WRITE;
/*!40000 ALTER TABLE `sys_file_processedfile` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_file_processedfile` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_file_reference`
--
DROP TABLE IF EXISTS `sys_file_reference`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_file_reference` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`crdate` int(10) unsigned NOT NULL DEFAULT '0',
`cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
`deleted` smallint(5) unsigned NOT NULL DEFAULT '0',
`hidden` smallint(5) unsigned NOT NULL DEFAULT '0',
`sys_language_uid` int(11) NOT NULL DEFAULT '0',
`l10n_parent` int(10) unsigned NOT NULL DEFAULT '0',
`l10n_state` text COLLATE utf8mb4_unicode_ci,
`l10n_diffsource` mediumblob,
`t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_id` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_state` smallint(6) NOT NULL DEFAULT '0',
`t3ver_stage` int(11) NOT NULL DEFAULT '0',
`t3ver_count` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0',
`uid_local` int(11) NOT NULL DEFAULT '0',
`uid_foreign` int(11) NOT NULL DEFAULT '0',
`tablenames` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`fieldname` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`sorting_foreign` int(11) NOT NULL DEFAULT '0',
`table_local` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`title` tinytext COLLATE utf8mb4_unicode_ci,
`description` text COLLATE utf8mb4_unicode_ci,
`alternative` text COLLATE utf8mb4_unicode_ci,
`link` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`crop` varchar(4000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`autoplay` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`uid`),
KEY `tablenames_fieldname` (`tablenames`(32),`fieldname`(12)),
KEY `deleted` (`deleted`),
KEY `uid_local` (`uid_local`),
KEY `uid_foreign` (`uid_foreign`),
KEY `combined_1` (`l10n_parent`,`t3ver_oid`,`t3ver_wsid`,`t3ver_state`,`deleted`),
KEY `parent` (`pid`,`deleted`,`hidden`),
KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_file_reference`
--
LOCK TABLES `sys_file_reference` WRITE;
/*!40000 ALTER TABLE `sys_file_reference` DISABLE KEYS */;
/*!40000 ALTER TABLE `sys_file_reference` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sys_file_storage`
--
DROP TABLE IF EXISTS `sys_file_storage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sys_file_storage` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) unsigned NOT NULL DEFAULT '0',
`tstamp` int(10) unsigned NOT NULL DEFAULT '0',
`crdate` int(10) unsigned NOT NULL DEFAULT '0',
`cruser_id` int(10) unsigned NOT NULL DEFAULT '0',
`deleted` smallint(5) unsigned NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`driver` tinytext COLLATE utf8mb4_unicode_ci,
`configuration` text COLLATE utf8mb4_unicode_ci,
`is_default` smallint(6) NOT NULL DEFAULT '0',
`is_browsable` smallint(6) NOT NULL DEFAULT '0',
`is_public` smallint(6) NOT NULL DEFAULT '0',
`is_writable` smallint(6) NOT NULL DEFAULT '0',
`is_online` smallint(6) NOT NULL DEFAULT '1',
`auto_extract_metadata` smallint(6) NOT NULL DEFAULT '1',
`processingfolder` tinytext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`uid`),
KEY `parent` (`pid`,`deleted`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sys_file_storage`
--
LOCK TABLES `sys_file_storage` WRITE;
/*!40000 ALTER TABLE `sys_file_storage` DISABLE KEYS */;
INSERT INTO `sys_file_storage` VALUES (1,0,1566399620,1566399620,0,0,'This is the local fileadmin/ directory. This storage mount has been created automatically by TYPO3.','fileadmin/ (auto-created)','Local','\n