PHP 8.2.30
Preview: ilias.sql Size: 3.80 MB
/var/softaculous/ilias/ilias.sql

-- MySQL dump 10.13  Distrib 8.0.42, for Linux (x86_64)
--
-- Host: localhost    Database: ilias106n
-- ------------------------------------------------------
-- Server version	8.0.37

/*!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 */;
/*!50503 SET NAMES utf8mb4 */;
/*!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 `acc_access_key`
--

DROP TABLE IF EXISTS `acc_access_key`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `acc_access_key` (
  `lang_key` char(2) NOT NULL DEFAULT '',
  `function_id` int NOT NULL DEFAULT '0',
  `access_key` char(1) DEFAULT NULL,
  PRIMARY KEY (`lang_key`,`function_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `acc_access_key`
--

LOCK TABLES `acc_access_key` WRITE;
/*!40000 ALTER TABLE `acc_access_key` DISABLE KEYS */;
/*!40000 ALTER TABLE `acc_access_key` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `acc_cache`
--

DROP TABLE IF EXISTS `acc_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `acc_cache` (
  `user_id` int NOT NULL DEFAULT '0',
  `time` int NOT NULL DEFAULT '0',
  `result` longtext,
  PRIMARY KEY (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `acc_cache`
--

LOCK TABLES `acc_cache` WRITE;
/*!40000 ALTER TABLE `acc_cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `acc_cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `acc_criterion_to_doc`
--

DROP TABLE IF EXISTS `acc_criterion_to_doc`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `acc_criterion_to_doc` (
  `id` int NOT NULL DEFAULT '0',
  `doc_id` int NOT NULL DEFAULT '0',
  `criterion_id` varchar(50) NOT NULL,
  `criterion_value` varchar(255) DEFAULT NULL,
  `assigned_ts` int NOT NULL DEFAULT '0',
  `modification_ts` int NOT NULL DEFAULT '0',
  `owner_usr_id` int NOT NULL DEFAULT '0',
  `last_modified_usr_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `acc_criterion_to_doc`
--

LOCK TABLES `acc_criterion_to_doc` WRITE;
/*!40000 ALTER TABLE `acc_criterion_to_doc` DISABLE KEYS */;
/*!40000 ALTER TABLE `acc_criterion_to_doc` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `acc_criterion_to_doc_seq`
--

DROP TABLE IF EXISTS `acc_criterion_to_doc_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `acc_criterion_to_doc_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `acc_criterion_to_doc_seq`
--

LOCK TABLES `acc_criterion_to_doc_seq` WRITE;
/*!40000 ALTER TABLE `acc_criterion_to_doc_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `acc_criterion_to_doc_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `acc_documents`
--

DROP TABLE IF EXISTS `acc_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `acc_documents` (
  `id` int NOT NULL DEFAULT '0',
  `title` varchar(255) DEFAULT NULL,
  `creation_ts` int NOT NULL DEFAULT '0',
  `modification_ts` int NOT NULL DEFAULT '0',
  `sorting` int NOT NULL DEFAULT '0',
  `owner_usr_id` int NOT NULL DEFAULT '0',
  `last_modified_usr_id` int NOT NULL DEFAULT '0',
  `text` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `acc_documents`
--

LOCK TABLES `acc_documents` WRITE;
/*!40000 ALTER TABLE `acc_documents` DISABLE KEYS */;
/*!40000 ALTER TABLE `acc_documents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `acc_documents_seq`
--

DROP TABLE IF EXISTS `acc_documents_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `acc_documents_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `acc_documents_seq`
--

LOCK TABLES `acc_documents_seq` WRITE;
/*!40000 ALTER TABLE `acc_documents_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `acc_documents_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `acc_user_access_key`
--

DROP TABLE IF EXISTS `acc_user_access_key`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `acc_user_access_key` (
  `user_id` int NOT NULL DEFAULT '0',
  `function_id` smallint NOT NULL DEFAULT '0',
  `access_key` char(1) DEFAULT NULL,
  PRIMARY KEY (`user_id`,`function_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `acc_user_access_key`
--

LOCK TABLES `acc_user_access_key` WRITE;
/*!40000 ALTER TABLE `acc_user_access_key` DISABLE KEYS */;
/*!40000 ALTER TABLE `acc_user_access_key` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `acl_ws`
--

DROP TABLE IF EXISTS `acl_ws`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `acl_ws` (
  `node_id` int NOT NULL DEFAULT '0',
  `object_id` int NOT NULL DEFAULT '0',
  `extended_data` varchar(200) DEFAULT NULL,
  `tstamp` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`node_id`,`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `acl_ws`
--

LOCK TABLES `acl_ws` WRITE;
/*!40000 ALTER TABLE `acl_ws` DISABLE KEYS */;
/*!40000 ALTER TABLE `acl_ws` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `addressbook_mlist`
--

DROP TABLE IF EXISTS `addressbook_mlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `addressbook_mlist` (
  `ml_id` bigint NOT NULL DEFAULT '0',
  `user_id` bigint NOT NULL DEFAULT '0',
  `title` varchar(255) DEFAULT NULL,
  `description` varchar(4000) DEFAULT NULL,
  `createdate` datetime DEFAULT NULL,
  `changedate` datetime DEFAULT NULL,
  `lmode` tinyint NOT NULL DEFAULT '1',
  PRIMARY KEY (`ml_id`),
  KEY `i1_idx` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `addressbook_mlist`
--

LOCK TABLES `addressbook_mlist` WRITE;
/*!40000 ALTER TABLE `addressbook_mlist` DISABLE KEYS */;
/*!40000 ALTER TABLE `addressbook_mlist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `addressbook_mlist_ass`
--

DROP TABLE IF EXISTS `addressbook_mlist_ass`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `addressbook_mlist_ass` (
  `a_id` bigint NOT NULL DEFAULT '0',
  `ml_id` bigint NOT NULL DEFAULT '0',
  `usr_id` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`a_id`),
  KEY `i1_idx` (`ml_id`),
  KEY `i2_idx` (`usr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `addressbook_mlist_ass`
--

LOCK TABLES `addressbook_mlist_ass` WRITE;
/*!40000 ALTER TABLE `addressbook_mlist_ass` DISABLE KEYS */;
/*!40000 ALTER TABLE `addressbook_mlist_ass` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `addressbook_mlist_ass_seq`
--

DROP TABLE IF EXISTS `addressbook_mlist_ass_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `addressbook_mlist_ass_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `addressbook_mlist_ass_seq`
--

LOCK TABLES `addressbook_mlist_ass_seq` WRITE;
/*!40000 ALTER TABLE `addressbook_mlist_ass_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `addressbook_mlist_ass_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `addressbook_mlist_seq`
--

DROP TABLE IF EXISTS `addressbook_mlist_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `addressbook_mlist_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `addressbook_mlist_seq`
--

LOCK TABLES `addressbook_mlist_seq` WRITE;
/*!40000 ALTER TABLE `addressbook_mlist_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `addressbook_mlist_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adl_shared_data`
--

DROP TABLE IF EXISTS `adl_shared_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adl_shared_data` (
  `slm_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `target_id` varchar(4000) NOT NULL DEFAULT '',
  `store` longtext,
  `cp_node_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`cp_node_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adl_shared_data`
--

LOCK TABLES `adl_shared_data` WRITE;
/*!40000 ALTER TABLE `adl_shared_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `adl_shared_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adm_set_templ_hide_tab`
--

DROP TABLE IF EXISTS `adm_set_templ_hide_tab`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adm_set_templ_hide_tab` (
  `template_id` int NOT NULL DEFAULT '0',
  `tab_id` varchar(80) NOT NULL DEFAULT '',
  PRIMARY KEY (`template_id`,`tab_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adm_set_templ_hide_tab`
--

LOCK TABLES `adm_set_templ_hide_tab` WRITE;
/*!40000 ALTER TABLE `adm_set_templ_hide_tab` DISABLE KEYS */;
/*!40000 ALTER TABLE `adm_set_templ_hide_tab` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adm_set_templ_value`
--

DROP TABLE IF EXISTS `adm_set_templ_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adm_set_templ_value` (
  `template_id` int NOT NULL DEFAULT '0',
  `setting` varchar(40) NOT NULL DEFAULT '',
  `value` varchar(4000) DEFAULT NULL,
  `hide` tinyint DEFAULT NULL,
  PRIMARY KEY (`template_id`,`setting`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adm_set_templ_value`
--

LOCK TABLES `adm_set_templ_value` WRITE;
/*!40000 ALTER TABLE `adm_set_templ_value` DISABLE KEYS */;
INSERT INTO `adm_set_templ_value` VALUES (1,'pass_scoring','0',1),(2,'pass_scoring','0',1);
/*!40000 ALTER TABLE `adm_set_templ_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_field_int`
--

DROP TABLE IF EXISTS `adv_md_field_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_field_int` (
  `field_id` int NOT NULL,
  `title` varchar(128) DEFAULT NULL,
  `description` varchar(4000) DEFAULT NULL,
  `lang_code` varchar(5) NOT NULL,
  PRIMARY KEY (`field_id`,`lang_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_field_int`
--

LOCK TABLES `adv_md_field_int` WRITE;
/*!40000 ALTER TABLE `adv_md_field_int` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_field_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_obj_rec_select`
--

DROP TABLE IF EXISTS `adv_md_obj_rec_select`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_obj_rec_select` (
  `obj_id` int NOT NULL DEFAULT '0',
  `sub_type` varchar(10) NOT NULL DEFAULT '-',
  `rec_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`sub_type`,`rec_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_obj_rec_select`
--

LOCK TABLES `adv_md_obj_rec_select` WRITE;
/*!40000 ALTER TABLE `adv_md_obj_rec_select` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_obj_rec_select` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_record`
--

DROP TABLE IF EXISTS `adv_md_record`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_record` (
  `record_id` int NOT NULL DEFAULT '0',
  `import_id` varchar(64) DEFAULT NULL,
  `active` tinyint NOT NULL DEFAULT '0',
  `title` varchar(128) DEFAULT NULL,
  `description` varchar(4000) DEFAULT NULL,
  `parent_obj` int DEFAULT NULL,
  `gpos` int DEFAULT NULL,
  `lang_default` varchar(2) DEFAULT NULL,
  PRIMARY KEY (`record_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_record`
--

LOCK TABLES `adv_md_record` WRITE;
/*!40000 ALTER TABLE `adv_md_record` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_record` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_record_files`
--

DROP TABLE IF EXISTS `adv_md_record_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_record_files` (
  `object_id` bigint NOT NULL DEFAULT '0',
  `rid` varchar(64) NOT NULL DEFAULT '',
  `is_global` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`rid`,`is_global`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_record_files`
--

LOCK TABLES `adv_md_record_files` WRITE;
/*!40000 ALTER TABLE `adv_md_record_files` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_record_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_record_int`
--

DROP TABLE IF EXISTS `adv_md_record_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_record_int` (
  `record_id` int NOT NULL,
  `title` varchar(128) DEFAULT NULL,
  `description` varchar(4000) DEFAULT NULL,
  `lang_code` varchar(5) NOT NULL,
  PRIMARY KEY (`record_id`,`lang_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_record_int`
--

LOCK TABLES `adv_md_record_int` WRITE;
/*!40000 ALTER TABLE `adv_md_record_int` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_record_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_record_obj_ord`
--

DROP TABLE IF EXISTS `adv_md_record_obj_ord`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_record_obj_ord` (
  `record_id` int NOT NULL,
  `obj_id` int NOT NULL,
  `position` int NOT NULL,
  PRIMARY KEY (`record_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_record_obj_ord`
--

LOCK TABLES `adv_md_record_obj_ord` WRITE;
/*!40000 ALTER TABLE `adv_md_record_obj_ord` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_record_obj_ord` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_record_objs`
--

DROP TABLE IF EXISTS `adv_md_record_objs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_record_objs` (
  `record_id` int NOT NULL DEFAULT '0',
  `obj_type` char(6) NOT NULL DEFAULT '',
  `sub_type` varchar(10) NOT NULL DEFAULT '-',
  `optional` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`record_id`,`obj_type`,`sub_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_record_objs`
--

LOCK TABLES `adv_md_record_objs` WRITE;
/*!40000 ALTER TABLE `adv_md_record_objs` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_record_objs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_record_scope`
--

DROP TABLE IF EXISTS `adv_md_record_scope`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_record_scope` (
  `scope_id` int NOT NULL DEFAULT '0',
  `record_id` int NOT NULL,
  `ref_id` int NOT NULL,
  PRIMARY KEY (`scope_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_record_scope`
--

LOCK TABLES `adv_md_record_scope` WRITE;
/*!40000 ALTER TABLE `adv_md_record_scope` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_record_scope` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_record_scope_seq`
--

DROP TABLE IF EXISTS `adv_md_record_scope_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_record_scope_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_record_scope_seq`
--

LOCK TABLES `adv_md_record_scope_seq` WRITE;
/*!40000 ALTER TABLE `adv_md_record_scope_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_record_scope_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_record_seq`
--

DROP TABLE IF EXISTS `adv_md_record_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_record_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_record_seq`
--

LOCK TABLES `adv_md_record_seq` WRITE;
/*!40000 ALTER TABLE `adv_md_record_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_record_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_substitutions`
--

DROP TABLE IF EXISTS `adv_md_substitutions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_substitutions` (
  `obj_type` varchar(4) NOT NULL DEFAULT ' ',
  `substitution` longtext,
  `hide_description` tinyint NOT NULL DEFAULT '0',
  `hide_field_names` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_substitutions`
--

LOCK TABLES `adv_md_substitutions` WRITE;
/*!40000 ALTER TABLE `adv_md_substitutions` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_substitutions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_values_date`
--

DROP TABLE IF EXISTS `adv_md_values_date`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_values_date` (
  `obj_id` int NOT NULL DEFAULT '0',
  `sub_type` varchar(10) NOT NULL DEFAULT '-',
  `sub_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0',
  `value` date DEFAULT NULL,
  `disabled` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`sub_type`,`sub_id`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_values_date`
--

LOCK TABLES `adv_md_values_date` WRITE;
/*!40000 ALTER TABLE `adv_md_values_date` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_values_date` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_values_datetime`
--

DROP TABLE IF EXISTS `adv_md_values_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_values_datetime` (
  `obj_id` int NOT NULL DEFAULT '0',
  `sub_type` varchar(10) NOT NULL DEFAULT '-',
  `sub_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0',
  `value` datetime DEFAULT NULL,
  `disabled` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`sub_type`,`sub_id`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_values_datetime`
--

LOCK TABLES `adv_md_values_datetime` WRITE;
/*!40000 ALTER TABLE `adv_md_values_datetime` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_values_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_values_enum`
--

DROP TABLE IF EXISTS `adv_md_values_enum`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_values_enum` (
  `obj_id` int NOT NULL DEFAULT '0',
  `sub_type` varchar(10) NOT NULL DEFAULT '-',
  `sub_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0',
  `disabled` tinyint NOT NULL DEFAULT '0',
  `value_index` varchar(16) NOT NULL,
  PRIMARY KEY (`obj_id`,`sub_type`,`sub_id`,`field_id`,`value_index`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_values_enum`
--

LOCK TABLES `adv_md_values_enum` WRITE;
/*!40000 ALTER TABLE `adv_md_values_enum` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_values_enum` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_values_extlink`
--

DROP TABLE IF EXISTS `adv_md_values_extlink`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_values_extlink` (
  `obj_id` int NOT NULL DEFAULT '0',
  `sub_type` varchar(10) NOT NULL DEFAULT '-',
  `sub_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0',
  `value` varchar(2000) DEFAULT NULL,
  `title` varchar(500) DEFAULT NULL,
  `disabled` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`sub_type`,`sub_id`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_values_extlink`
--

LOCK TABLES `adv_md_values_extlink` WRITE;
/*!40000 ALTER TABLE `adv_md_values_extlink` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_values_extlink` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_values_float`
--

DROP TABLE IF EXISTS `adv_md_values_float`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_values_float` (
  `obj_id` int NOT NULL DEFAULT '0',
  `sub_type` varchar(10) NOT NULL DEFAULT '-',
  `sub_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0',
  `value` double DEFAULT NULL,
  `disabled` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`sub_type`,`sub_id`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_values_float`
--

LOCK TABLES `adv_md_values_float` WRITE;
/*!40000 ALTER TABLE `adv_md_values_float` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_values_float` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_values_int`
--

DROP TABLE IF EXISTS `adv_md_values_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_values_int` (
  `obj_id` int NOT NULL DEFAULT '0',
  `sub_type` varchar(10) NOT NULL DEFAULT '-',
  `sub_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0',
  `value` int DEFAULT NULL,
  `disabled` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`sub_type`,`sub_id`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_values_int`
--

LOCK TABLES `adv_md_values_int` WRITE;
/*!40000 ALTER TABLE `adv_md_values_int` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_values_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_values_intlink`
--

DROP TABLE IF EXISTS `adv_md_values_intlink`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_values_intlink` (
  `obj_id` int NOT NULL DEFAULT '0',
  `sub_type` varchar(10) NOT NULL DEFAULT '-',
  `sub_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0',
  `value` int NOT NULL,
  `disabled` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`sub_type`,`sub_id`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_values_intlink`
--

LOCK TABLES `adv_md_values_intlink` WRITE;
/*!40000 ALTER TABLE `adv_md_values_intlink` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_values_intlink` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_values_location`
--

DROP TABLE IF EXISTS `adv_md_values_location`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_values_location` (
  `obj_id` int NOT NULL DEFAULT '0',
  `sub_type` varchar(10) NOT NULL DEFAULT '-',
  `sub_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0',
  `loc_lat` double DEFAULT NULL,
  `loc_long` double DEFAULT NULL,
  `loc_zoom` tinyint DEFAULT NULL,
  `disabled` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`sub_type`,`sub_id`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_values_location`
--

LOCK TABLES `adv_md_values_location` WRITE;
/*!40000 ALTER TABLE `adv_md_values_location` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_values_location` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_values_ltext`
--

DROP TABLE IF EXISTS `adv_md_values_ltext`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_values_ltext` (
  `obj_id` int NOT NULL DEFAULT '0',
  `sub_type` varchar(10) NOT NULL DEFAULT '-',
  `sub_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0',
  `value_index` varchar(16) NOT NULL,
  `value` varchar(4000) DEFAULT NULL,
  `disabled` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`sub_type`,`sub_id`,`field_id`,`value_index`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_values_ltext`
--

LOCK TABLES `adv_md_values_ltext` WRITE;
/*!40000 ALTER TABLE `adv_md_values_ltext` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_values_ltext` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_md_values_text`
--

DROP TABLE IF EXISTS `adv_md_values_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_md_values_text` (
  `obj_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0',
  `value` varchar(4000) DEFAULT NULL,
  `disabled` tinyint NOT NULL DEFAULT '0',
  `sub_type` varchar(10) NOT NULL DEFAULT '-',
  `sub_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`field_id`,`sub_type`,`sub_id`),
  KEY `i1_idx` (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_md_values_text`
--

LOCK TABLES `adv_md_values_text` WRITE;
/*!40000 ALTER TABLE `adv_md_values_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_md_values_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_mdf_definition`
--

DROP TABLE IF EXISTS `adv_mdf_definition`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_mdf_definition` (
  `field_id` int NOT NULL DEFAULT '0',
  `record_id` int NOT NULL DEFAULT '0',
  `import_id` varchar(32) DEFAULT NULL,
  `position` int NOT NULL DEFAULT '0',
  `field_type` tinyint NOT NULL DEFAULT '0',
  `field_values` text,
  `title` varchar(255) DEFAULT NULL,
  `description` varchar(2000) DEFAULT NULL,
  `searchable` tinyint NOT NULL DEFAULT '0',
  `required` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_mdf_definition`
--

LOCK TABLES `adv_mdf_definition` WRITE;
/*!40000 ALTER TABLE `adv_mdf_definition` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_mdf_definition` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_mdf_definition_seq`
--

DROP TABLE IF EXISTS `adv_mdf_definition_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_mdf_definition_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_mdf_definition_seq`
--

LOCK TABLES `adv_mdf_definition_seq` WRITE;
/*!40000 ALTER TABLE `adv_mdf_definition_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_mdf_definition_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adv_mdf_enum`
--

DROP TABLE IF EXISTS `adv_mdf_enum`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `adv_mdf_enum` (
  `field_id` int NOT NULL,
  `lang_code` varchar(5) NOT NULL,
  `idx` int NOT NULL,
  `value` varchar(4000) NOT NULL,
  `position` int DEFAULT NULL,
  PRIMARY KEY (`field_id`,`lang_code`,`idx`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adv_mdf_enum`
--

LOCK TABLES `adv_mdf_enum` WRITE;
/*!40000 ALTER TABLE `adv_mdf_enum` DISABLE KEYS */;
/*!40000 ALTER TABLE `adv_mdf_enum` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aicc_course`
--

DROP TABLE IF EXISTS `aicc_course`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `aicc_course` (
  `obj_id` int NOT NULL DEFAULT '0',
  `course_creator` varchar(255) DEFAULT NULL,
  `course_id` varchar(50) DEFAULT NULL,
  `course_system` varchar(50) DEFAULT NULL,
  `course_title` varchar(255) DEFAULT NULL,
  `c_level` varchar(5) DEFAULT NULL,
  `max_fields_cst` int DEFAULT '0',
  `max_fields_ort` int DEFAULT '0',
  `total_aus` int NOT NULL DEFAULT '0',
  `total_blocks` int NOT NULL DEFAULT '0',
  `total_complex_obj` int DEFAULT '0',
  `total_objectives` int DEFAULT '0',
  `version` varchar(10) DEFAULT NULL,
  `max_normal` tinyint DEFAULT NULL,
  `description` longtext,
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aicc_course`
--

LOCK TABLES `aicc_course` WRITE;
/*!40000 ALTER TABLE `aicc_course` DISABLE KEYS */;
/*!40000 ALTER TABLE `aicc_course` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aicc_object`
--

DROP TABLE IF EXISTS `aicc_object`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `aicc_object` (
  `obj_id` int NOT NULL DEFAULT '0',
  `slm_id` int NOT NULL DEFAULT '0',
  `system_id` varchar(50) DEFAULT NULL,
  `title` varchar(4000) DEFAULT NULL,
  `description` longtext,
  `developer_id` varchar(50) DEFAULT NULL,
  `c_type` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`obj_id`),
  KEY `i1_idx` (`slm_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aicc_object`
--

LOCK TABLES `aicc_object` WRITE;
/*!40000 ALTER TABLE `aicc_object` DISABLE KEYS */;
/*!40000 ALTER TABLE `aicc_object` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aicc_object_seq`
--

DROP TABLE IF EXISTS `aicc_object_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `aicc_object_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aicc_object_seq`
--

LOCK TABLES `aicc_object_seq` WRITE;
/*!40000 ALTER TABLE `aicc_object_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `aicc_object_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aicc_units`
--

DROP TABLE IF EXISTS `aicc_units`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `aicc_units` (
  `obj_id` int NOT NULL DEFAULT '0',
  `c_type` varchar(50) DEFAULT NULL,
  `command_line` varchar(255) DEFAULT NULL,
  `max_time_allowed` time DEFAULT NULL,
  `time_limit_action` varchar(50) DEFAULT NULL,
  `max_score` double DEFAULT NULL,
  `core_vendor` varchar(4000) DEFAULT NULL,
  `system_vendor` varchar(4000) DEFAULT NULL,
  `file_name` varchar(255) DEFAULT NULL,
  `mastery_score` int NOT NULL DEFAULT '0',
  `web_launch` varchar(255) DEFAULT NULL,
  `au_password` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aicc_units`
--

LOCK TABLES `aicc_units` WRITE;
/*!40000 ALTER TABLE `aicc_units` DISABLE KEYS */;
/*!40000 ALTER TABLE `aicc_units` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `aicc_units_seq`
--

DROP TABLE IF EXISTS `aicc_units_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `aicc_units_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `aicc_units_seq`
--

LOCK TABLES `aicc_units_seq` WRITE;
/*!40000 ALTER TABLE `aicc_units_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `aicc_units_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ass_log`
--

DROP TABLE IF EXISTS `ass_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ass_log` (
  `ass_log_id` int NOT NULL DEFAULT '0',
  `user_fi` int NOT NULL DEFAULT '0',
  `obj_fi` int NOT NULL DEFAULT '0',
  `logtext` varchar(4000) DEFAULT NULL,
  `question_fi` int DEFAULT NULL,
  `original_fi` int DEFAULT NULL,
  `ref_id` int DEFAULT NULL,
  `test_only` varchar(1) DEFAULT '0',
  `tstamp` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`ass_log_id`),
  KEY `i1_idx` (`user_fi`,`obj_fi`),
  KEY `i2_idx` (`obj_fi`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ass_log`
--

LOCK TABLES `ass_log` WRITE;
/*!40000 ALTER TABLE `ass_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `ass_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ass_log_seq`
--

DROP TABLE IF EXISTS `ass_log_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ass_log_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ass_log_seq`
--

LOCK TABLES `ass_log_seq` WRITE;
/*!40000 ALTER TABLE `ass_log_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `ass_log_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `auth_ext_attr_mapping`
--

DROP TABLE IF EXISTS `auth_ext_attr_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `auth_ext_attr_mapping` (
  `auth_src_id` int NOT NULL DEFAULT '0',
  `attribute` varchar(75) NOT NULL,
  `ext_attribute` varchar(1000) DEFAULT NULL,
  `update_automatically` tinyint NOT NULL DEFAULT '0',
  `auth_mode` varchar(50) NOT NULL DEFAULT '',
  PRIMARY KEY (`auth_mode`,`auth_src_id`,`attribute`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `auth_ext_attr_mapping`
--

LOCK TABLES `auth_ext_attr_mapping` WRITE;
/*!40000 ALTER TABLE `auth_ext_attr_mapping` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_ext_attr_mapping` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `background_task`
--

DROP TABLE IF EXISTS `background_task`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `background_task` (
  `id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `handler` varchar(1000) DEFAULT NULL,
  `steps` mediumint NOT NULL DEFAULT '0',
  `cstep` mediumint DEFAULT NULL,
  `start_date` datetime DEFAULT NULL,
  `status` varchar(100) DEFAULT NULL,
  `params` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `background_task`
--

LOCK TABLES `background_task` WRITE;
/*!40000 ALTER TABLE `background_task` DISABLE KEYS */;
/*!40000 ALTER TABLE `background_task` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `background_task_seq`
--

DROP TABLE IF EXISTS `background_task_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `background_task_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `background_task_seq`
--

LOCK TABLES `background_task_seq` WRITE;
/*!40000 ALTER TABLE `background_task_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `background_task_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `badge_badge`
--

DROP TABLE IF EXISTS `badge_badge`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `badge_badge` (
  `id` int NOT NULL DEFAULT '0',
  `parent_id` int NOT NULL DEFAULT '0',
  `type_id` varchar(255) DEFAULT NULL,
  `active` tinyint NOT NULL DEFAULT '0',
  `title` varchar(255) DEFAULT NULL,
  `descr` varchar(4000) DEFAULT NULL,
  `conf` varchar(4000) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `valid` varchar(255) DEFAULT NULL,
  `crit` varchar(4000) DEFAULT NULL,
  `image_rid` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `badge_badge`
--

LOCK TABLES `badge_badge` WRITE;
/*!40000 ALTER TABLE `badge_badge` DISABLE KEYS */;
/*!40000 ALTER TABLE `badge_badge` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `badge_badge_seq`
--

DROP TABLE IF EXISTS `badge_badge_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `badge_badge_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `badge_badge_seq`
--

LOCK TABLES `badge_badge_seq` WRITE;
/*!40000 ALTER TABLE `badge_badge_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `badge_badge_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `badge_image_templ_type`
--

DROP TABLE IF EXISTS `badge_image_templ_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `badge_image_templ_type` (
  `tmpl_id` int NOT NULL DEFAULT '0',
  `type_id` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`tmpl_id`,`type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `badge_image_templ_type`
--

LOCK TABLES `badge_image_templ_type` WRITE;
/*!40000 ALTER TABLE `badge_image_templ_type` DISABLE KEYS */;
/*!40000 ALTER TABLE `badge_image_templ_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `badge_image_template`
--

DROP TABLE IF EXISTS `badge_image_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `badge_image_template` (
  `id` int NOT NULL DEFAULT '0',
  `title` varchar(255) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `image_rid` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `badge_image_template`
--

LOCK TABLES `badge_image_template` WRITE;
/*!40000 ALTER TABLE `badge_image_template` DISABLE KEYS */;
/*!40000 ALTER TABLE `badge_image_template` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `badge_image_template_seq`
--

DROP TABLE IF EXISTS `badge_image_template_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `badge_image_template_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `badge_image_template_seq`
--

LOCK TABLES `badge_image_template_seq` WRITE;
/*!40000 ALTER TABLE `badge_image_template_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `badge_image_template_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `badge_user_badge`
--

DROP TABLE IF EXISTS `badge_user_badge`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `badge_user_badge` (
  `badge_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `tstamp` int NOT NULL DEFAULT '0',
  `awarded_by` int DEFAULT NULL,
  `pos` smallint DEFAULT NULL,
  PRIMARY KEY (`badge_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `badge_user_badge`
--

LOCK TABLES `badge_user_badge` WRITE;
/*!40000 ALTER TABLE `badge_user_badge` DISABLE KEYS */;
/*!40000 ALTER TABLE `badge_user_badge` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `benchmark`
--

DROP TABLE IF EXISTS `benchmark`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `benchmark` (
  `id` int NOT NULL DEFAULT '0',
  `cdate` datetime DEFAULT NULL,
  `module` varchar(150) DEFAULT NULL,
  `benchmark` varchar(150) DEFAULT NULL,
  `duration` double DEFAULT NULL,
  `sql_stmt` longtext,
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`module`,`benchmark`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `benchmark`
--

LOCK TABLES `benchmark` WRITE;
/*!40000 ALTER TABLE `benchmark` DISABLE KEYS */;
/*!40000 ALTER TABLE `benchmark` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `benchmark_seq`
--

DROP TABLE IF EXISTS `benchmark_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `benchmark_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `benchmark_seq`
--

LOCK TABLES `benchmark_seq` WRITE;
/*!40000 ALTER TABLE `benchmark_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `benchmark_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `book_obj_use_book`
--

DROP TABLE IF EXISTS `book_obj_use_book`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `book_obj_use_book` (
  `obj_id` int NOT NULL DEFAULT '0',
  `book_ref_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`book_ref_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `book_obj_use_book`
--

LOCK TABLES `book_obj_use_book` WRITE;
/*!40000 ALTER TABLE `book_obj_use_book` DISABLE KEYS */;
/*!40000 ALTER TABLE `book_obj_use_book` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `book_sel_object`
--

DROP TABLE IF EXISTS `book_sel_object`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `book_sel_object` (
  `user_id` int NOT NULL DEFAULT '0',
  `object_id` int NOT NULL DEFAULT '0',
  `pool_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`user_id`,`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `book_sel_object`
--

LOCK TABLES `book_sel_object` WRITE;
/*!40000 ALTER TABLE `book_sel_object` DISABLE KEYS */;
/*!40000 ALTER TABLE `book_sel_object` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_entry`
--

DROP TABLE IF EXISTS `booking_entry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_entry` (
  `booking_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `deadline` int NOT NULL DEFAULT '0',
  `num_bookings` int NOT NULL DEFAULT '0',
  `target_obj_id` int DEFAULT NULL,
  PRIMARY KEY (`booking_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_entry`
--

LOCK TABLES `booking_entry` WRITE;
/*!40000 ALTER TABLE `booking_entry` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_entry` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_entry_seq`
--

DROP TABLE IF EXISTS `booking_entry_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_entry_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_entry_seq`
--

LOCK TABLES `booking_entry_seq` WRITE;
/*!40000 ALTER TABLE `booking_entry_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_entry_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_member`
--

DROP TABLE IF EXISTS `booking_member`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_member` (
  `participant_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `booking_pool_id` varchar(255) NOT NULL,
  `assigner_user_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`participant_id`,`user_id`,`booking_pool_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_member`
--

LOCK TABLES `booking_member` WRITE;
/*!40000 ALTER TABLE `booking_member` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_member` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_member_seq`
--

DROP TABLE IF EXISTS `booking_member_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_member_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_member_seq`
--

LOCK TABLES `booking_member_seq` WRITE;
/*!40000 ALTER TABLE `booking_member_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_member_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_obj_assignment`
--

DROP TABLE IF EXISTS `booking_obj_assignment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_obj_assignment` (
  `booking_id` int NOT NULL DEFAULT '0',
  `target_obj_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`booking_id`,`target_obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_obj_assignment`
--

LOCK TABLES `booking_obj_assignment` WRITE;
/*!40000 ALTER TABLE `booking_obj_assignment` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_obj_assignment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_object`
--

DROP TABLE IF EXISTS `booking_object`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_object` (
  `booking_object_id` int NOT NULL DEFAULT '0',
  `title` varchar(255) NOT NULL DEFAULT '',
  `schedule_id` int DEFAULT NULL,
  `pool_id` int DEFAULT '0',
  `description` varchar(1000) DEFAULT NULL,
  `nr_items` smallint NOT NULL DEFAULT '1',
  `info_file` varchar(500) DEFAULT NULL,
  `post_text` varchar(4000) DEFAULT NULL,
  `post_file` varchar(500) DEFAULT NULL,
  `obj_info_rid` varchar(64) DEFAULT NULL,
  `book_info_rid` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`booking_object_id`),
  KEY `i1_idx` (`pool_id`),
  KEY `i2_idx` (`schedule_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_object`
--

LOCK TABLES `booking_object` WRITE;
/*!40000 ALTER TABLE `booking_object` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_object` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_object_seq`
--

DROP TABLE IF EXISTS `booking_object_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_object_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_object_seq`
--

LOCK TABLES `booking_object_seq` WRITE;
/*!40000 ALTER TABLE `booking_object_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_object_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_preferences`
--

DROP TABLE IF EXISTS `booking_preferences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_preferences` (
  `book_pool_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `book_obj_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`book_pool_id`,`user_id`,`book_obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_preferences`
--

LOCK TABLES `booking_preferences` WRITE;
/*!40000 ALTER TABLE `booking_preferences` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_preferences` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_reservation`
--

DROP TABLE IF EXISTS `booking_reservation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_reservation` (
  `booking_reservation_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `object_id` int NOT NULL DEFAULT '0',
  `date_from` int NOT NULL DEFAULT '0',
  `date_to` int NOT NULL DEFAULT '0',
  `status` smallint DEFAULT NULL,
  `group_id` int DEFAULT NULL,
  `assigner_id` int NOT NULL DEFAULT '0',
  `context_obj_id` int DEFAULT '0',
  `message` varchar(4000) NOT NULL DEFAULT '',
  PRIMARY KEY (`booking_reservation_id`),
  KEY `i1_idx` (`user_id`),
  KEY `i2_idx` (`object_id`),
  KEY `i3_idx` (`date_from`),
  KEY `i4_idx` (`date_to`),
  KEY `i5_idx` (`context_obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_reservation`
--

LOCK TABLES `booking_reservation` WRITE;
/*!40000 ALTER TABLE `booking_reservation` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_reservation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_reservation_group_seq`
--

DROP TABLE IF EXISTS `booking_reservation_group_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_reservation_group_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_reservation_group_seq`
--

LOCK TABLES `booking_reservation_group_seq` WRITE;
/*!40000 ALTER TABLE `booking_reservation_group_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_reservation_group_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_reservation_seq`
--

DROP TABLE IF EXISTS `booking_reservation_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_reservation_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_reservation_seq`
--

LOCK TABLES `booking_reservation_seq` WRITE;
/*!40000 ALTER TABLE `booking_reservation_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_reservation_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_schedule`
--

DROP TABLE IF EXISTS `booking_schedule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_schedule` (
  `booking_schedule_id` int NOT NULL DEFAULT '0',
  `title` varchar(255) NOT NULL DEFAULT '',
  `pool_id` int NOT NULL DEFAULT '0',
  `deadline` int DEFAULT NULL,
  `rent_min` int DEFAULT NULL,
  `rent_max` int DEFAULT NULL,
  `raster` int DEFAULT NULL,
  `auto_break` int DEFAULT NULL,
  `av_from` int DEFAULT NULL,
  `av_to` int DEFAULT NULL,
  PRIMARY KEY (`booking_schedule_id`),
  KEY `i1_idx` (`pool_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_schedule`
--

LOCK TABLES `booking_schedule` WRITE;
/*!40000 ALTER TABLE `booking_schedule` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_schedule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_schedule_seq`
--

DROP TABLE IF EXISTS `booking_schedule_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_schedule_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_schedule_seq`
--

LOCK TABLES `booking_schedule_seq` WRITE;
/*!40000 ALTER TABLE `booking_schedule_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_schedule_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_schedule_slot`
--

DROP TABLE IF EXISTS `booking_schedule_slot`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_schedule_slot` (
  `booking_schedule_id` int NOT NULL DEFAULT '0',
  `day_id` varchar(2) NOT NULL DEFAULT '',
  `slot_id` tinyint NOT NULL DEFAULT '0',
  `times` varchar(50) NOT NULL DEFAULT '',
  PRIMARY KEY (`booking_schedule_id`,`day_id`,`slot_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_schedule_slot`
--

LOCK TABLES `booking_schedule_slot` WRITE;
/*!40000 ALTER TABLE `booking_schedule_slot` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_schedule_slot` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_settings`
--

DROP TABLE IF EXISTS `booking_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_settings` (
  `booking_pool_id` int NOT NULL DEFAULT '0',
  `public_log` tinyint DEFAULT NULL,
  `pool_offline` tinyint DEFAULT NULL,
  `slots_no` smallint DEFAULT '0',
  `schedule_type` tinyint NOT NULL DEFAULT '1',
  `ovlimit` tinyint DEFAULT NULL,
  `rsv_filter_period` smallint DEFAULT NULL,
  `reminder_status` tinyint NOT NULL DEFAULT '0',
  `reminder_day` int NOT NULL DEFAULT '0',
  `last_remind_ts` int NOT NULL DEFAULT '0',
  `preference_nr` int NOT NULL DEFAULT '0',
  `pref_deadline` int NOT NULL DEFAULT '0',
  `pref_booking_hash` varchar(23) NOT NULL DEFAULT '0',
  `messages` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`booking_pool_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_settings`
--

LOCK TABLES `booking_settings` WRITE;
/*!40000 ALTER TABLE `booking_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `booking_user`
--

DROP TABLE IF EXISTS `booking_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `booking_user` (
  `entry_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `tstamp` int NOT NULL DEFAULT '0',
  `booking_message` varchar(1024) DEFAULT NULL,
  `notification_sent` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`entry_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `booking_user`
--

LOCK TABLES `booking_user` WRITE;
/*!40000 ALTER TABLE `booking_user` DISABLE KEYS */;
/*!40000 ALTER TABLE `booking_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bookmark_data`
--

DROP TABLE IF EXISTS `bookmark_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `bookmark_data` (
  `obj_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `title` varchar(200) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `target` varchar(200) DEFAULT NULL,
  `type` varchar(4) DEFAULT NULL,
  PRIMARY KEY (`obj_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bookmark_data`
--

LOCK TABLES `bookmark_data` WRITE;
/*!40000 ALTER TABLE `bookmark_data` DISABLE KEYS */;
INSERT INTO `bookmark_data` VALUES (1,0,'dummy_folder','','','bmf');
/*!40000 ALTER TABLE `bookmark_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bookmark_data_seq`
--

DROP TABLE IF EXISTS `bookmark_data_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `bookmark_data_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bookmark_data_seq`
--

LOCK TABLES `bookmark_data_seq` WRITE;
/*!40000 ALTER TABLE `bookmark_data_seq` DISABLE KEYS */;
INSERT INTO `bookmark_data_seq` VALUES (1);
/*!40000 ALTER TABLE `bookmark_data_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `bookmark_tree`
--

DROP TABLE IF EXISTS `bookmark_tree`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `bookmark_tree` (
  `tree` int NOT NULL DEFAULT '0',
  `child` int NOT NULL DEFAULT '0',
  `parent` int DEFAULT NULL,
  `lft` int NOT NULL DEFAULT '0',
  `rgt` int NOT NULL DEFAULT '0',
  `depth` smallint NOT NULL DEFAULT '0',
  PRIMARY KEY (`tree`,`child`),
  KEY `i1_idx` (`child`),
  KEY `i2_idx` (`parent`),
  KEY `i3_idx` (`child`,`tree`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `bookmark_tree`
--

LOCK TABLES `bookmark_tree` WRITE;
/*!40000 ALTER TABLE `bookmark_tree` DISABLE KEYS */;
INSERT INTO `bookmark_tree` VALUES (6,1,0,1,2,1);
/*!40000 ALTER TABLE `bookmark_tree` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `buddylist`
--

DROP TABLE IF EXISTS `buddylist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `buddylist` (
  `usr_id` int NOT NULL DEFAULT '0',
  `buddy_usr_id` int NOT NULL DEFAULT '0',
  `ts` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`usr_id`,`buddy_usr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `buddylist`
--

LOCK TABLES `buddylist` WRITE;
/*!40000 ALTER TABLE `buddylist` DISABLE KEYS */;
/*!40000 ALTER TABLE `buddylist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `buddylist_requests`
--

DROP TABLE IF EXISTS `buddylist_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `buddylist_requests` (
  `usr_id` int NOT NULL DEFAULT '0',
  `buddy_usr_id` int NOT NULL DEFAULT '0',
  `ignored` tinyint NOT NULL DEFAULT '0',
  `ts` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`usr_id`,`buddy_usr_id`),
  KEY `i1_idx` (`buddy_usr_id`,`ignored`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `buddylist_requests`
--

LOCK TABLES `buddylist_requests` WRITE;
/*!40000 ALTER TABLE `buddylist_requests` DISABLE KEYS */;
/*!40000 ALTER TABLE `buddylist_requests` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_clob`
--

DROP TABLE IF EXISTS `cache_clob`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache_clob` (
  `component` varchar(50) NOT NULL DEFAULT '',
  `name` varchar(50) NOT NULL DEFAULT '',
  `entry_id` varchar(50) NOT NULL DEFAULT '',
  `value` longtext,
  `expire_time` int NOT NULL DEFAULT '0',
  `ilias_version` varchar(10) DEFAULT NULL,
  `int_key_1` int DEFAULT NULL,
  `int_key_2` int DEFAULT NULL,
  `text_key_1` varchar(20) DEFAULT NULL,
  `text_key_2` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`component`,`name`,`entry_id`),
  KEY `et_idx` (`expire_time`),
  KEY `iv_idx` (`ilias_version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_clob`
--

LOCK TABLES `cache_clob` WRITE;
/*!40000 ALTER TABLE `cache_clob` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_clob` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_text`
--

DROP TABLE IF EXISTS `cache_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache_text` (
  `component` varchar(50) NOT NULL DEFAULT '',
  `name` varchar(50) NOT NULL DEFAULT '',
  `entry_id` varchar(50) NOT NULL DEFAULT '',
  `value` varchar(4000) DEFAULT NULL,
  `expire_time` int NOT NULL DEFAULT '0',
  `ilias_version` varchar(10) DEFAULT NULL,
  `int_key_1` int DEFAULT NULL,
  `int_key_2` int DEFAULT NULL,
  `text_key_1` varchar(20) DEFAULT NULL,
  `text_key_2` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`component`,`name`,`entry_id`),
  KEY `et_idx` (`expire_time`),
  KEY `iv_idx` (`ilias_version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_text`
--

LOCK TABLES `cache_text` WRITE;
/*!40000 ALTER TABLE `cache_text` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_auth_token`
--

DROP TABLE IF EXISTS `cal_auth_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_auth_token` (
  `user_id` int NOT NULL DEFAULT '0',
  `hash` varchar(32) NOT NULL DEFAULT '',
  `selection` int NOT NULL DEFAULT '0',
  `calendar` int NOT NULL DEFAULT '0',
  `ical` longtext,
  `c_time` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`user_id`,`hash`),
  KEY `i1_idx` (`hash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_auth_token`
--

LOCK TABLES `cal_auth_token` WRITE;
/*!40000 ALTER TABLE `cal_auth_token` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_auth_token` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_cat_assignments`
--

DROP TABLE IF EXISTS `cal_cat_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_cat_assignments` (
  `cal_id` int NOT NULL DEFAULT '0',
  `cat_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`cal_id`,`cat_id`),
  KEY `i2_idx` (`cat_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_cat_assignments`
--

LOCK TABLES `cal_cat_assignments` WRITE;
/*!40000 ALTER TABLE `cal_cat_assignments` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_cat_assignments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_cat_visibility`
--

DROP TABLE IF EXISTS `cal_cat_visibility`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_cat_visibility` (
  `user_id` int NOT NULL DEFAULT '0',
  `cat_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `visible` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`user_id`,`cat_id`,`obj_id`),
  KEY `i1_idx` (`cat_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_cat_visibility`
--

LOCK TABLES `cal_cat_visibility` WRITE;
/*!40000 ALTER TABLE `cal_cat_visibility` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_cat_visibility` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_categories`
--

DROP TABLE IF EXISTS `cal_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_categories` (
  `cat_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `title` char(128) DEFAULT NULL,
  `color` char(8) DEFAULT NULL,
  `type` tinyint NOT NULL DEFAULT '0',
  `loc_type` tinyint NOT NULL DEFAULT '1',
  `remote_url` varchar(500) DEFAULT NULL,
  `remote_user` varchar(50) DEFAULT NULL,
  `remote_pass` varchar(50) DEFAULT NULL,
  `remote_sync` datetime DEFAULT NULL,
  PRIMARY KEY (`cat_id`),
  KEY `i2_idx` (`obj_id`),
  KEY `i3_idx` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_categories`
--

LOCK TABLES `cal_categories` WRITE;
/*!40000 ALTER TABLE `cal_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_categories_seq`
--

DROP TABLE IF EXISTS `cal_categories_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_categories_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_categories_seq`
--

LOCK TABLES `cal_categories_seq` WRITE;
/*!40000 ALTER TABLE `cal_categories_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_categories_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_ch_group`
--

DROP TABLE IF EXISTS `cal_ch_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_ch_group` (
  `grp_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `multiple_assignments` tinyint NOT NULL DEFAULT '0',
  `title` varchar(512) DEFAULT NULL,
  PRIMARY KEY (`grp_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_ch_group`
--

LOCK TABLES `cal_ch_group` WRITE;
/*!40000 ALTER TABLE `cal_ch_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_ch_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_ch_group_seq`
--

DROP TABLE IF EXISTS `cal_ch_group_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_ch_group_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_ch_group_seq`
--

LOCK TABLES `cal_ch_group_seq` WRITE;
/*!40000 ALTER TABLE `cal_ch_group_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_ch_group_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_ch_settings`
--

DROP TABLE IF EXISTS `cal_ch_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_ch_settings` (
  `user_id` int NOT NULL DEFAULT '0',
  `admin_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`user_id`,`admin_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_ch_settings`
--

LOCK TABLES `cal_ch_settings` WRITE;
/*!40000 ALTER TABLE `cal_ch_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_ch_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_entries`
--

DROP TABLE IF EXISTS `cal_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_entries` (
  `cal_id` int NOT NULL DEFAULT '0',
  `last_update` datetime DEFAULT NULL,
  `title` char(128) DEFAULT NULL,
  `subtitle` char(64) DEFAULT NULL,
  `description` varchar(4000) DEFAULT NULL,
  `location` varchar(4000) DEFAULT NULL,
  `fullday` tinyint NOT NULL DEFAULT '0',
  `starta` datetime DEFAULT NULL,
  `enda` datetime DEFAULT NULL,
  `informations` varchar(4000) DEFAULT NULL,
  `auto_generated` tinyint NOT NULL DEFAULT '0',
  `context_id` int NOT NULL DEFAULT '0',
  `translation_type` tinyint NOT NULL DEFAULT '0',
  `notification` tinyint NOT NULL DEFAULT '0',
  `context_info` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`cal_id`),
  KEY `i1_idx` (`last_update`),
  KEY `i2_idx` (`context_id`),
  KEY `i3_idx` (`starta`),
  KEY `i4_idx` (`enda`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_entries`
--

LOCK TABLES `cal_entries` WRITE;
/*!40000 ALTER TABLE `cal_entries` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_entries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_entries_seq`
--

DROP TABLE IF EXISTS `cal_entries_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_entries_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_entries_seq`
--

LOCK TABLES `cal_entries_seq` WRITE;
/*!40000 ALTER TABLE `cal_entries_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_entries_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_notification`
--

DROP TABLE IF EXISTS `cal_notification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_notification` (
  `notification_id` int NOT NULL DEFAULT '0',
  `cal_id` int NOT NULL DEFAULT '0',
  `user_type` tinyint NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `email` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`notification_id`),
  KEY `i1_idx` (`cal_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_notification`
--

LOCK TABLES `cal_notification` WRITE;
/*!40000 ALTER TABLE `cal_notification` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_notification` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_notification_seq`
--

DROP TABLE IF EXISTS `cal_notification_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_notification_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_notification_seq`
--

LOCK TABLES `cal_notification_seq` WRITE;
/*!40000 ALTER TABLE `cal_notification_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_notification_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_rec_exclusion`
--

DROP TABLE IF EXISTS `cal_rec_exclusion`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_rec_exclusion` (
  `excl_id` int NOT NULL DEFAULT '0',
  `cal_id` int NOT NULL DEFAULT '0',
  `excl_date` date DEFAULT NULL,
  PRIMARY KEY (`excl_id`),
  KEY `i1_idx` (`cal_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_rec_exclusion`
--

LOCK TABLES `cal_rec_exclusion` WRITE;
/*!40000 ALTER TABLE `cal_rec_exclusion` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_rec_exclusion` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_rec_exclusion_seq`
--

DROP TABLE IF EXISTS `cal_rec_exclusion_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_rec_exclusion_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_rec_exclusion_seq`
--

LOCK TABLES `cal_rec_exclusion_seq` WRITE;
/*!40000 ALTER TABLE `cal_rec_exclusion_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_rec_exclusion_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_recurrence_rules`
--

DROP TABLE IF EXISTS `cal_recurrence_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_recurrence_rules` (
  `rule_id` int NOT NULL DEFAULT '0',
  `cal_id` int NOT NULL DEFAULT '0',
  `cal_recurrence` int NOT NULL DEFAULT '0',
  `freq_type` char(20) DEFAULT NULL,
  `freq_until_date` datetime DEFAULT NULL,
  `freq_until_count` int NOT NULL DEFAULT '0',
  `intervall` int NOT NULL DEFAULT '0',
  `byday` char(64) DEFAULT NULL,
  `byweekno` char(64) DEFAULT '0',
  `bymonth` char(64) DEFAULT NULL,
  `bymonthday` char(64) DEFAULT NULL,
  `byyearday` char(64) DEFAULT NULL,
  `bysetpos` char(64) DEFAULT '0',
  `weekstart` char(2) DEFAULT NULL,
  PRIMARY KEY (`rule_id`),
  KEY `i1_idx` (`cal_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_recurrence_rules`
--

LOCK TABLES `cal_recurrence_rules` WRITE;
/*!40000 ALTER TABLE `cal_recurrence_rules` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_recurrence_rules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_recurrence_rules_seq`
--

DROP TABLE IF EXISTS `cal_recurrence_rules_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_recurrence_rules_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_recurrence_rules_seq`
--

LOCK TABLES `cal_recurrence_rules_seq` WRITE;
/*!40000 ALTER TABLE `cal_recurrence_rules_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_recurrence_rules_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_registrations`
--

DROP TABLE IF EXISTS `cal_registrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_registrations` (
  `cal_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `dstart` int NOT NULL DEFAULT '0',
  `dend` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`cal_id`,`usr_id`,`dstart`,`dend`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_registrations`
--

LOCK TABLES `cal_registrations` WRITE;
/*!40000 ALTER TABLE `cal_registrations` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_registrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_shared`
--

DROP TABLE IF EXISTS `cal_shared`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_shared` (
  `cal_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `obj_type` int NOT NULL DEFAULT '0',
  `create_date` datetime DEFAULT NULL,
  `writable` tinyint DEFAULT '0',
  PRIMARY KEY (`cal_id`,`obj_id`),
  KEY `i1_idx` (`obj_id`,`obj_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_shared`
--

LOCK TABLES `cal_shared` WRITE;
/*!40000 ALTER TABLE `cal_shared` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_shared` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cal_shared_status`
--

DROP TABLE IF EXISTS `cal_shared_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cal_shared_status` (
  `cal_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `status` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`cal_id`,`usr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cal_shared_status`
--

LOCK TABLES `cal_shared_status` WRITE;
/*!40000 ALTER TABLE `cal_shared_status` DISABLE KEYS */;
/*!40000 ALTER TABLE `cal_shared_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chatroom_admconfig`
--

DROP TABLE IF EXISTS `chatroom_admconfig`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chatroom_admconfig` (
  `instance_id` int NOT NULL DEFAULT '0',
  `server_settings` varchar(2000) NOT NULL DEFAULT '',
  `default_config` tinyint NOT NULL DEFAULT '0',
  `client_settings` varchar(1000) NOT NULL DEFAULT '',
  PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chatroom_admconfig`
--

LOCK TABLES `chatroom_admconfig` WRITE;
/*!40000 ALTER TABLE `chatroom_admconfig` DISABLE KEYS */;
/*!40000 ALTER TABLE `chatroom_admconfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chatroom_admconfig_seq`
--

DROP TABLE IF EXISTS `chatroom_admconfig_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chatroom_admconfig_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chatroom_admconfig_seq`
--

LOCK TABLES `chatroom_admconfig_seq` WRITE;
/*!40000 ALTER TABLE `chatroom_admconfig_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `chatroom_admconfig_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chatroom_bans`
--

DROP TABLE IF EXISTS `chatroom_bans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chatroom_bans` (
  `room_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `timestamp` int NOT NULL DEFAULT '0',
  `remark` varchar(1000) DEFAULT NULL,
  `actor_id` int DEFAULT NULL,
  PRIMARY KEY (`room_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chatroom_bans`
--

LOCK TABLES `chatroom_bans` WRITE;
/*!40000 ALTER TABLE `chatroom_bans` DISABLE KEYS */;
/*!40000 ALTER TABLE `chatroom_bans` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chatroom_history`
--

DROP TABLE IF EXISTS `chatroom_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chatroom_history` (
  `hist_id` bigint NOT NULL DEFAULT '0',
  `room_id` int NOT NULL DEFAULT '0',
  `message` varchar(4000) DEFAULT NULL,
  `timestamp` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`hist_id`),
  KEY `i1_idx` (`room_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chatroom_history`
--

LOCK TABLES `chatroom_history` WRITE;
/*!40000 ALTER TABLE `chatroom_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `chatroom_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chatroom_history_seq`
--

DROP TABLE IF EXISTS `chatroom_history_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chatroom_history_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chatroom_history_seq`
--

LOCK TABLES `chatroom_history_seq` WRITE;
/*!40000 ALTER TABLE `chatroom_history_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `chatroom_history_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chatroom_sessions`
--

DROP TABLE IF EXISTS `chatroom_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chatroom_sessions` (
  `sess_id` bigint NOT NULL DEFAULT '0',
  `room_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `userdata` varchar(4000) DEFAULT NULL,
  `connected` int NOT NULL DEFAULT '0',
  `disconnected` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`sess_id`),
  KEY `i1_idx` (`room_id`,`user_id`),
  KEY `i2_idx` (`disconnected`),
  KEY `i3_idx` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chatroom_sessions`
--

LOCK TABLES `chatroom_sessions` WRITE;
/*!40000 ALTER TABLE `chatroom_sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `chatroom_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chatroom_sessions_seq`
--

DROP TABLE IF EXISTS `chatroom_sessions_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chatroom_sessions_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chatroom_sessions_seq`
--

LOCK TABLES `chatroom_sessions_seq` WRITE;
/*!40000 ALTER TABLE `chatroom_sessions_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `chatroom_sessions_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chatroom_settings`
--

DROP TABLE IF EXISTS `chatroom_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chatroom_settings` (
  `room_id` int NOT NULL DEFAULT '0',
  `object_id` int DEFAULT '0',
  `room_type` varchar(20) NOT NULL DEFAULT '',
  `allow_anonymous` tinyint DEFAULT '0',
  `allow_custom_usernames` tinyint DEFAULT '0',
  `enable_history` tinyint DEFAULT '0',
  `autogen_usernames` varchar(50) DEFAULT 'Anonymous #',
  `display_past_msgs` int NOT NULL DEFAULT '0',
  `online_status` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`room_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chatroom_settings`
--

LOCK TABLES `chatroom_settings` WRITE;
/*!40000 ALTER TABLE `chatroom_settings` DISABLE KEYS */;
INSERT INTO `chatroom_settings` VALUES (2,185,'default',0,0,0,'Anonymous #',0,1);
/*!40000 ALTER TABLE `chatroom_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chatroom_settings_seq`
--

DROP TABLE IF EXISTS `chatroom_settings_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chatroom_settings_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chatroom_settings_seq`
--

LOCK TABLES `chatroom_settings_seq` WRITE;
/*!40000 ALTER TABLE `chatroom_settings_seq` DISABLE KEYS */;
INSERT INTO `chatroom_settings_seq` VALUES (2);
/*!40000 ALTER TABLE `chatroom_settings_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `chatroom_users`
--

DROP TABLE IF EXISTS `chatroom_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chatroom_users` (
  `room_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `userdata` varchar(4000) NOT NULL DEFAULT '',
  `connected` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`room_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `chatroom_users`
--

LOCK TABLES `chatroom_users` WRITE;
/*!40000 ALTER TABLE `chatroom_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `chatroom_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmi_comment`
--

DROP TABLE IF EXISTS `cmi_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmi_comment` (
  `cmi_comment_id` int NOT NULL DEFAULT '0',
  `cmi_node_id` int DEFAULT NULL,
  `c_comment` longtext,
  `c_timestamp` datetime DEFAULT NULL,
  `location` varchar(255) DEFAULT NULL,
  `sourceislms` tinyint DEFAULT NULL,
  PRIMARY KEY (`cmi_comment_id`),
  KEY `i2_idx` (`cmi_node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmi_comment`
--

LOCK TABLES `cmi_comment` WRITE;
/*!40000 ALTER TABLE `cmi_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmi_comment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmi_comment_seq`
--

DROP TABLE IF EXISTS `cmi_comment_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmi_comment_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmi_comment_seq`
--

LOCK TABLES `cmi_comment_seq` WRITE;
/*!40000 ALTER TABLE `cmi_comment_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmi_comment_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmi_correct_response`
--

DROP TABLE IF EXISTS `cmi_correct_response`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmi_correct_response` (
  `cmi_correct_resp_id` int NOT NULL DEFAULT '0',
  `cmi_interaction_id` int DEFAULT NULL,
  `pattern` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`cmi_correct_resp_id`),
  KEY `i1_idx` (`cmi_interaction_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmi_correct_response`
--

LOCK TABLES `cmi_correct_response` WRITE;
/*!40000 ALTER TABLE `cmi_correct_response` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmi_correct_response` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmi_correct_response_seq`
--

DROP TABLE IF EXISTS `cmi_correct_response_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmi_correct_response_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmi_correct_response_seq`
--

LOCK TABLES `cmi_correct_response_seq` WRITE;
/*!40000 ALTER TABLE `cmi_correct_response_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmi_correct_response_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmi_custom`
--

DROP TABLE IF EXISTS `cmi_custom`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmi_custom` (
  `sco_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `lvalue` varchar(64) NOT NULL DEFAULT ' ',
  `rvalue` varchar(255) DEFAULT NULL,
  `c_timestamp` datetime DEFAULT NULL,
  PRIMARY KEY (`user_id`,`lvalue`,`obj_id`,`sco_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmi_custom`
--

LOCK TABLES `cmi_custom` WRITE;
/*!40000 ALTER TABLE `cmi_custom` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmi_custom` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmi_gobjective`
--

DROP TABLE IF EXISTS `cmi_gobjective`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmi_gobjective` (
  `user_id` int NOT NULL,
  `satisfied` varchar(50) DEFAULT NULL,
  `measure` varchar(50) DEFAULT NULL,
  `scope_id` int NOT NULL,
  `status` varchar(50) DEFAULT NULL,
  `objective_id` varchar(253) NOT NULL,
  `score_raw` varchar(50) DEFAULT NULL,
  `score_min` varchar(50) DEFAULT NULL,
  `score_max` varchar(50) DEFAULT NULL,
  `progress_measure` varchar(50) DEFAULT NULL,
  `completion_status` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`user_id`,`scope_id`,`objective_id`),
  KEY `i2_idx` (`scope_id`,`objective_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmi_gobjective`
--

LOCK TABLES `cmi_gobjective` WRITE;
/*!40000 ALTER TABLE `cmi_gobjective` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmi_gobjective` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmi_interaction`
--

DROP TABLE IF EXISTS `cmi_interaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmi_interaction` (
  `cmi_interaction_id` int NOT NULL DEFAULT '0',
  `cmi_node_id` int DEFAULT NULL,
  `description` longtext,
  `id` varchar(255) DEFAULT NULL,
  `latency` varchar(20) DEFAULT NULL,
  `result` varchar(4000) DEFAULT NULL,
  `c_timestamp` varchar(40) DEFAULT NULL,
  `c_type` varchar(32) DEFAULT NULL,
  `weighting` double DEFAULT NULL,
  `learner_response` longtext,
  PRIMARY KEY (`cmi_interaction_id`),
  KEY `i2_idx` (`id`),
  KEY `i3_idx` (`c_type`),
  KEY `i4_idx` (`cmi_node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmi_interaction`
--

LOCK TABLES `cmi_interaction` WRITE;
/*!40000 ALTER TABLE `cmi_interaction` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmi_interaction` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmi_interaction_seq`
--

DROP TABLE IF EXISTS `cmi_interaction_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmi_interaction_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmi_interaction_seq`
--

LOCK TABLES `cmi_interaction_seq` WRITE;
/*!40000 ALTER TABLE `cmi_interaction_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmi_interaction_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmi_node`
--

DROP TABLE IF EXISTS `cmi_node`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmi_node` (
  `accesscount` int DEFAULT NULL,
  `accessduration` varchar(20) DEFAULT NULL,
  `accessed` varchar(20) DEFAULT NULL,
  `activityabsduration` varchar(20) DEFAULT NULL,
  `activityattemptcount` int DEFAULT NULL,
  `activityexpduration` varchar(20) DEFAULT NULL,
  `activityprogstatus` tinyint DEFAULT NULL,
  `attemptabsduration` varchar(20) DEFAULT NULL,
  `attemptcomplamount` double DEFAULT NULL,
  `attemptcomplstatus` tinyint DEFAULT NULL,
  `attemptexpduration` varchar(20) DEFAULT NULL,
  `attemptprogstatus` tinyint DEFAULT NULL,
  `audio_captioning` int DEFAULT NULL,
  `audio_level` double DEFAULT NULL,
  `availablechildren` varchar(255) DEFAULT NULL,
  `cmi_node_id` int NOT NULL DEFAULT '0',
  `completion` double DEFAULT NULL,
  `completion_status` varchar(32) DEFAULT NULL,
  `completion_threshold` varchar(32) DEFAULT NULL,
  `cp_node_id` int NOT NULL DEFAULT '0',
  `created` varchar(20) DEFAULT NULL,
  `credit` varchar(32) DEFAULT NULL,
  `delivery_speed` double DEFAULT NULL,
  `c_entry` varchar(255) DEFAULT NULL,
  `c_exit` varchar(255) DEFAULT NULL,
  `c_language` varchar(5) DEFAULT NULL,
  `launch_data` longtext,
  `learner_name` varchar(255) DEFAULT NULL,
  `location` varchar(255) DEFAULT NULL,
  `c_max` double DEFAULT NULL,
  `c_min` double DEFAULT NULL,
  `c_mode` varchar(20) DEFAULT NULL,
  `modified` varchar(20) DEFAULT NULL,
  `progress_measure` double DEFAULT NULL,
  `c_raw` double DEFAULT NULL,
  `scaled` double DEFAULT NULL,
  `scaled_passing_score` double DEFAULT NULL,
  `session_time` varchar(20) DEFAULT NULL,
  `success_status` varchar(255) DEFAULT NULL,
  `suspend_data` longtext,
  `total_time` varchar(20) DEFAULT NULL,
  `user_id` int NOT NULL DEFAULT '0',
  `c_timestamp` datetime DEFAULT NULL,
  `additional_tables` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`cmi_node_id`),
  KEY `i1_idx` (`cp_node_id`),
  KEY `i2_idx` (`completion_status`),
  KEY `i3_idx` (`credit`),
  KEY `i5_idx` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmi_node`
--

LOCK TABLES `cmi_node` WRITE;
/*!40000 ALTER TABLE `cmi_node` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmi_node` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmi_node_seq`
--

DROP TABLE IF EXISTS `cmi_node_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmi_node_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmi_node_seq`
--

LOCK TABLES `cmi_node_seq` WRITE;
/*!40000 ALTER TABLE `cmi_node_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmi_node_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmi_objective`
--

DROP TABLE IF EXISTS `cmi_objective`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmi_objective` (
  `cmi_interaction_id` int DEFAULT NULL,
  `cmi_node_id` int DEFAULT NULL,
  `cmi_objective_id` int NOT NULL DEFAULT '0',
  `description` longtext,
  `id` varchar(4000) DEFAULT NULL,
  `c_max` double DEFAULT NULL,
  `c_min` double DEFAULT NULL,
  `c_raw` double DEFAULT NULL,
  `scaled` double DEFAULT NULL,
  `progress_measure` double DEFAULT NULL,
  `success_status` varchar(32) DEFAULT NULL,
  `scope` varchar(16) DEFAULT NULL,
  `completion_status` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`cmi_objective_id`),
  KEY `i2_idx` (`cmi_interaction_id`),
  KEY `i4_idx` (`success_status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmi_objective`
--

LOCK TABLES `cmi_objective` WRITE;
/*!40000 ALTER TABLE `cmi_objective` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmi_objective` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmi_objective_seq`
--

DROP TABLE IF EXISTS `cmi_objective_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmi_objective_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmi_objective_seq`
--

LOCK TABLES `cmi_objective_seq` WRITE;
/*!40000 ALTER TABLE `cmi_objective_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmi_objective_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmix_del_object`
--

DROP TABLE IF EXISTS `cmix_del_object`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmix_del_object` (
  `obj_id` int NOT NULL,
  `type_id` int NOT NULL,
  `activity_id` varchar(128) NOT NULL,
  `added` datetime NOT NULL,
  `updated` datetime DEFAULT NULL,
  PRIMARY KEY (`obj_id`,`type_id`,`activity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmix_del_object`
--

LOCK TABLES `cmix_del_object` WRITE;
/*!40000 ALTER TABLE `cmix_del_object` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmix_del_object` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmix_del_user`
--

DROP TABLE IF EXISTS `cmix_del_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmix_del_user` (
  `usr_id` int NOT NULL,
  `added` datetime NOT NULL,
  `updated` datetime DEFAULT NULL,
  `obj_id` int NOT NULL,
  PRIMARY KEY (`usr_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmix_del_user`
--

LOCK TABLES `cmix_del_user` WRITE;
/*!40000 ALTER TABLE `cmix_del_user` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmix_del_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmix_lrs_types`
--

DROP TABLE IF EXISTS `cmix_lrs_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmix_lrs_types` (
  `type_id` int NOT NULL DEFAULT '0',
  `title` varchar(255) DEFAULT NULL,
  `description` varchar(4000) DEFAULT NULL,
  `availability` int NOT NULL DEFAULT '1',
  `remarks` varchar(4000) DEFAULT NULL,
  `time_to_delete` int DEFAULT NULL,
  `lrs_endpoint` varchar(255) NOT NULL,
  `lrs_key` varchar(128) NOT NULL,
  `lrs_secret` varchar(128) NOT NULL,
  `privacy_comment_default` varchar(2000) NOT NULL,
  `external_lrs` tinyint NOT NULL DEFAULT '0',
  `force_privacy_settings` tinyint NOT NULL DEFAULT '0',
  `bypass_proxy` tinyint NOT NULL DEFAULT '0',
  `only_moveon` tinyint NOT NULL DEFAULT '0',
  `achieved` tinyint NOT NULL DEFAULT '1',
  `answered` tinyint NOT NULL DEFAULT '1',
  `completed` tinyint NOT NULL DEFAULT '1',
  `failed` tinyint NOT NULL DEFAULT '1',
  `initialized` tinyint NOT NULL DEFAULT '1',
  `passed` tinyint NOT NULL DEFAULT '1',
  `progressed` tinyint NOT NULL DEFAULT '1',
  `satisfied` tinyint NOT NULL DEFAULT '1',
  `c_terminated` tinyint NOT NULL DEFAULT '1',
  `hide_data` tinyint NOT NULL DEFAULT '0',
  `c_timestamp` tinyint NOT NULL DEFAULT '0',
  `duration` tinyint NOT NULL DEFAULT '1',
  `no_substatements` tinyint NOT NULL DEFAULT '0',
  `privacy_ident` smallint NOT NULL DEFAULT '0',
  `privacy_name` smallint NOT NULL DEFAULT '0',
  `delete_data` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmix_lrs_types`
--

LOCK TABLES `cmix_lrs_types` WRITE;
/*!40000 ALTER TABLE `cmix_lrs_types` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmix_lrs_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmix_lrs_types_seq`
--

DROP TABLE IF EXISTS `cmix_lrs_types_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmix_lrs_types_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmix_lrs_types_seq`
--

LOCK TABLES `cmix_lrs_types_seq` WRITE;
/*!40000 ALTER TABLE `cmix_lrs_types_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmix_lrs_types_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmix_results`
--

DROP TABLE IF EXISTS `cmix_results`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmix_results` (
  `id` int NOT NULL,
  `obj_id` int NOT NULL,
  `usr_id` int NOT NULL,
  `version` smallint NOT NULL DEFAULT '1',
  `score` double DEFAULT NULL,
  `status` varchar(32) NOT NULL DEFAULT '0',
  `last_update` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`obj_id`,`usr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmix_results`
--

LOCK TABLES `cmix_results` WRITE;
/*!40000 ALTER TABLE `cmix_results` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmix_results` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmix_results_seq`
--

DROP TABLE IF EXISTS `cmix_results_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmix_results_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmix_results_seq`
--

LOCK TABLES `cmix_results_seq` WRITE;
/*!40000 ALTER TABLE `cmix_results_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmix_results_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmix_settings`
--

DROP TABLE IF EXISTS `cmix_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmix_settings` (
  `obj_id` int NOT NULL DEFAULT '0',
  `lrs_type_id` int NOT NULL DEFAULT '0',
  `content_type` varchar(32) DEFAULT NULL,
  `source_type` varchar(32) DEFAULT NULL,
  `activity_id` varchar(255) DEFAULT NULL,
  `instructions` varchar(4000) DEFAULT NULL,
  `offline_status` tinyint NOT NULL DEFAULT '1',
  `launch_url` varchar(255) DEFAULT NULL,
  `auth_fetch_url` tinyint NOT NULL DEFAULT '0',
  `launch_method` varchar(32) DEFAULT NULL,
  `launch_mode` varchar(32) DEFAULT NULL,
  `mastery_score` double NOT NULL DEFAULT '0',
  `keep_lp` tinyint NOT NULL DEFAULT '0',
  `usr_privacy_comment` varchar(4000) DEFAULT NULL,
  `show_statements` tinyint NOT NULL DEFAULT '0',
  `xml_manifest` longtext,
  `version` int NOT NULL DEFAULT '1',
  `highscore_enabled` tinyint NOT NULL DEFAULT '0',
  `highscore_achieved_ts` tinyint NOT NULL DEFAULT '0',
  `highscore_percentage` tinyint NOT NULL DEFAULT '0',
  `highscore_wtime` tinyint NOT NULL DEFAULT '0',
  `highscore_own_table` tinyint NOT NULL DEFAULT '0',
  `highscore_top_table` tinyint NOT NULL DEFAULT '0',
  `highscore_top_num` int NOT NULL DEFAULT '0',
  `bypass_proxy` tinyint NOT NULL DEFAULT '0',
  `only_moveon` tinyint NOT NULL DEFAULT '0',
  `achieved` tinyint NOT NULL DEFAULT '1',
  `answered` tinyint NOT NULL DEFAULT '1',
  `completed` tinyint NOT NULL DEFAULT '1',
  `failed` tinyint NOT NULL DEFAULT '1',
  `initialized` tinyint NOT NULL DEFAULT '1',
  `passed` tinyint NOT NULL DEFAULT '1',
  `progressed` tinyint NOT NULL DEFAULT '1',
  `satisfied` tinyint NOT NULL DEFAULT '1',
  `c_terminated` tinyint NOT NULL DEFAULT '1',
  `hide_data` tinyint NOT NULL DEFAULT '0',
  `c_timestamp` tinyint NOT NULL DEFAULT '0',
  `duration` tinyint NOT NULL DEFAULT '1',
  `no_substatements` tinyint NOT NULL DEFAULT '0',
  `privacy_ident` smallint NOT NULL DEFAULT '0',
  `privacy_name` smallint NOT NULL DEFAULT '0',
  `publisher_id` varchar(255) NOT NULL DEFAULT '',
  `anonymous_homepage` tinyint NOT NULL DEFAULT '1',
  `moveon` varchar(32) NOT NULL DEFAULT '',
  `launch_parameters` varchar(255) NOT NULL DEFAULT '',
  `entitlement_key` varchar(255) NOT NULL DEFAULT '',
  `switch_to_review` tinyint NOT NULL DEFAULT '1',
  `delete_data` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmix_settings`
--

LOCK TABLES `cmix_settings` WRITE;
/*!40000 ALTER TABLE `cmix_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmix_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmix_token`
--

DROP TABLE IF EXISTS `cmix_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmix_token` (
  `token` varchar(255) NOT NULL DEFAULT '0',
  `valid_until` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  `lrs_type_id` int NOT NULL DEFAULT '0',
  `ref_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `cmi5_session` varchar(255) NOT NULL DEFAULT '',
  `returned_for_cmi5_session` varchar(255) NOT NULL DEFAULT '',
  `cmi5_session_data` longtext,
  PRIMARY KEY (`token`),
  UNIQUE KEY `c1_idx` (`obj_id`,`usr_id`),
  KEY `i1_idx` (`token`,`valid_until`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmix_token`
--

LOCK TABLES `cmix_token` WRITE;
/*!40000 ALTER TABLE `cmix_token` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmix_token` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cmix_users`
--

DROP TABLE IF EXISTS `cmix_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cmix_users` (
  `obj_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `proxy_success` tinyint NOT NULL DEFAULT '0',
  `fetched_until` datetime DEFAULT NULL,
  `usr_ident` varchar(255) DEFAULT NULL,
  `privacy_ident` smallint NOT NULL DEFAULT '0',
  `registration` varchar(255) NOT NULL DEFAULT '',
  `satisfied` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`usr_id`,`privacy_ident`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cmix_users`
--

LOCK TABLES `cmix_users` WRITE;
/*!40000 ALTER TABLE `cmix_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `cmix_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `conditions`
--

DROP TABLE IF EXISTS `conditions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `conditions` (
  `condition_id` int NOT NULL DEFAULT '0',
  `target_ref_id` int NOT NULL DEFAULT '0',
  `target_obj_id` int NOT NULL DEFAULT '0',
  `target_type` varchar(8) DEFAULT NULL,
  `trigger_ref_id` int NOT NULL DEFAULT '0',
  `trigger_obj_id` int NOT NULL DEFAULT '0',
  `trigger_type` varchar(8) DEFAULT NULL,
  `operator` varchar(64) DEFAULT NULL,
  `value` varchar(128) DEFAULT NULL,
  `ref_handling` tinyint NOT NULL DEFAULT '1',
  `obligatory` tinyint NOT NULL DEFAULT '1',
  `num_obligatory` tinyint NOT NULL DEFAULT '0',
  `hidden_status` tinyint DEFAULT '0',
  PRIMARY KEY (`condition_id`),
  KEY `tot_idx` (`target_obj_id`,`target_type`),
  KEY `i1_idx` (`target_obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `conditions`
--

LOCK TABLES `conditions` WRITE;
/*!40000 ALTER TABLE `conditions` DISABLE KEYS */;
/*!40000 ALTER TABLE `conditions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `conditions_seq`
--

DROP TABLE IF EXISTS `conditions_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `conditions_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `conditions_seq`
--

LOCK TABLES `conditions_seq` WRITE;
/*!40000 ALTER TABLE `conditions_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `conditions_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cont_filter_field`
--

DROP TABLE IF EXISTS `cont_filter_field`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cont_filter_field` (
  `ref_id` int NOT NULL DEFAULT '0',
  `record_set_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cont_filter_field`
--

LOCK TABLES `cont_filter_field` WRITE;
/*!40000 ALTER TABLE `cont_filter_field` DISABLE KEYS */;
/*!40000 ALTER TABLE `cont_filter_field` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cont_member_skills`
--

DROP TABLE IF EXISTS `cont_member_skills`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cont_member_skills` (
  `obj_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `tref_id` int NOT NULL DEFAULT '0',
  `skill_id` int NOT NULL DEFAULT '0',
  `level_id` int NOT NULL DEFAULT '0',
  `published` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`user_id`,`skill_id`,`tref_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cont_member_skills`
--

LOCK TABLES `cont_member_skills` WRITE;
/*!40000 ALTER TABLE `cont_member_skills` DISABLE KEYS */;
/*!40000 ALTER TABLE `cont_member_skills` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cont_skills`
--

DROP TABLE IF EXISTS `cont_skills`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cont_skills` (
  `id` int NOT NULL DEFAULT '0',
  `skill_id` int NOT NULL DEFAULT '0',
  `tref_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`,`skill_id`,`tref_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cont_skills`
--

LOCK TABLES `cont_skills` WRITE;
/*!40000 ALTER TABLE `cont_skills` DISABLE KEYS */;
/*!40000 ALTER TABLE `cont_skills` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `container_reference`
--

DROP TABLE IF EXISTS `container_reference`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `container_reference` (
  `obj_id` int NOT NULL DEFAULT '0',
  `target_obj_id` int NOT NULL DEFAULT '0',
  `title_type` tinyint NOT NULL DEFAULT '1',
  PRIMARY KEY (`obj_id`,`target_obj_id`),
  KEY `i1_idx` (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `container_reference`
--

LOCK TABLES `container_reference` WRITE;
/*!40000 ALTER TABLE `container_reference` DISABLE KEYS */;
/*!40000 ALTER TABLE `container_reference` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `container_settings`
--

DROP TABLE IF EXISTS `container_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `container_settings` (
  `id` int NOT NULL DEFAULT '0',
  `keyword` char(40) NOT NULL DEFAULT '',
  `value` char(50) DEFAULT NULL,
  PRIMARY KEY (`id`,`keyword`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `container_settings`
--

LOCK TABLES `container_settings` WRITE;
/*!40000 ALTER TABLE `container_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `container_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `container_sorting`
--

DROP TABLE IF EXISTS `container_sorting`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `container_sorting` (
  `obj_id` int NOT NULL DEFAULT '0',
  `child_id` int NOT NULL DEFAULT '0',
  `position` int NOT NULL DEFAULT '0',
  `parent_type` varchar(5) DEFAULT NULL,
  `parent_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`child_id`,`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `container_sorting`
--

LOCK TABLES `container_sorting` WRITE;
/*!40000 ALTER TABLE `container_sorting` DISABLE KEYS */;
/*!40000 ALTER TABLE `container_sorting` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `container_sorting_bl`
--

DROP TABLE IF EXISTS `container_sorting_bl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `container_sorting_bl` (
  `obj_id` int NOT NULL DEFAULT '0',
  `block_ids` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `container_sorting_bl`
--

LOCK TABLES `container_sorting_bl` WRITE;
/*!40000 ALTER TABLE `container_sorting_bl` DISABLE KEYS */;
/*!40000 ALTER TABLE `container_sorting_bl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `container_sorting_set`
--

DROP TABLE IF EXISTS `container_sorting_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `container_sorting_set` (
  `obj_id` int NOT NULL DEFAULT '0',
  `sort_mode` tinyint NOT NULL DEFAULT '0',
  `sort_direction` tinyint NOT NULL DEFAULT '0',
  `new_items_position` tinyint NOT NULL DEFAULT '1',
  `new_items_order` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `container_sorting_set`
--

LOCK TABLES `container_sorting_set` WRITE;
/*!40000 ALTER TABLE `container_sorting_set` DISABLE KEYS */;
/*!40000 ALTER TABLE `container_sorting_set` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `content_object`
--

DROP TABLE IF EXISTS `content_object`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `content_object` (
  `id` int NOT NULL DEFAULT '0',
  `default_layout` varchar(100) DEFAULT 'toc2win',
  `stylesheet` int NOT NULL DEFAULT '0',
  `page_header` char(8) DEFAULT 'st_title',
  `is_online` char(1) DEFAULT 'n',
  `toc_active` char(1) DEFAULT 'y',
  `lm_menu_active` char(1) DEFAULT 'y',
  `toc_mode` char(8) DEFAULT 'chapters',
  `clean_frames` char(1) DEFAULT 'n',
  `print_view_active` char(1) DEFAULT 'y',
  `numbering` char(1) DEFAULT 'n',
  `hist_user_comments` char(1) DEFAULT 'n',
  `public_access_mode` char(8) DEFAULT 'complete',
  `public_html_file` varchar(50) DEFAULT NULL,
  `public_xml_file` varchar(50) DEFAULT NULL,
  `downloads_active` char(1) DEFAULT 'n',
  `downloads_public_active` char(1) DEFAULT 'y',
  `header_page` int NOT NULL DEFAULT '0',
  `footer_page` int NOT NULL DEFAULT '0',
  `no_glo_appendix` char(1) DEFAULT 'n',
  `layout_per_page` tinyint DEFAULT NULL,
  `public_scorm_file` varchar(50) DEFAULT NULL,
  `rating` tinyint NOT NULL DEFAULT '0',
  `hide_head_foot_print` tinyint NOT NULL DEFAULT '0',
  `disable_def_feedback` int NOT NULL DEFAULT '0',
  `rating_pages` tinyint DEFAULT '0',
  `progr_icons` tinyint NOT NULL DEFAULT '0',
  `store_tries` tinyint NOT NULL DEFAULT '0',
  `restrict_forw_nav` tinyint NOT NULL DEFAULT '0',
  `for_translation` tinyint NOT NULL DEFAULT '0',
  `act_est_reading_time` tinyint NOT NULL DEFAULT '0',
  `est_reading_time` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `content_object`
--

LOCK TABLES `content_object` WRITE;
/*!40000 ALTER TABLE `content_object` DISABLE KEYS */;
/*!40000 ALTER TABLE `content_object` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `content_page_data`
--

DROP TABLE IF EXISTS `content_page_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `content_page_data` (
  `content_page_id` int NOT NULL DEFAULT '0',
  `stylesheet` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`content_page_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `content_page_data`
--

LOCK TABLES `content_page_data` WRITE;
/*!40000 ALTER TABLE `content_page_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `content_page_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `content_page_metrics`
--

DROP TABLE IF EXISTS `content_page_metrics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `content_page_metrics` (
  `content_page_id` int NOT NULL DEFAULT '0',
  `page_id` int NOT NULL DEFAULT '0',
  `lang` varchar(2) NOT NULL DEFAULT '-',
  `reading_time` smallint NOT NULL DEFAULT '0',
  PRIMARY KEY (`content_page_id`,`page_id`,`lang`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `content_page_metrics`
--

LOCK TABLES `content_page_metrics` WRITE;
/*!40000 ALTER TABLE `content_page_metrics` DISABLE KEYS */;
/*!40000 ALTER TABLE `content_page_metrics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `copg_multilang`
--

DROP TABLE IF EXISTS `copg_multilang`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `copg_multilang` (
  `parent_type` varchar(10) NOT NULL DEFAULT '0',
  `parent_id` int NOT NULL DEFAULT '0',
  `master_lang` varchar(2) NOT NULL DEFAULT '',
  PRIMARY KEY (`parent_type`,`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `copg_multilang`
--

LOCK TABLES `copg_multilang` WRITE;
/*!40000 ALTER TABLE `copg_multilang` DISABLE KEYS */;
/*!40000 ALTER TABLE `copg_multilang` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `copg_multilang_lang`
--

DROP TABLE IF EXISTS `copg_multilang_lang`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `copg_multilang_lang` (
  `parent_type` varchar(10) NOT NULL DEFAULT '0',
  `parent_id` int NOT NULL DEFAULT '0',
  `lang` varchar(2) NOT NULL DEFAULT '',
  PRIMARY KEY (`parent_type`,`parent_id`,`lang`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `copg_multilang_lang`
--

LOCK TABLES `copg_multilang_lang` WRITE;
/*!40000 ALTER TABLE `copg_multilang_lang` DISABLE KEYS */;
/*!40000 ALTER TABLE `copg_multilang_lang` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `copg_pc_def`
--

DROP TABLE IF EXISTS `copg_pc_def`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `copg_pc_def` (
  `pc_type` varchar(20) NOT NULL DEFAULT '',
  `name` varchar(40) NOT NULL DEFAULT '',
  `directory` varchar(40) DEFAULT NULL,
  `int_links` tinyint NOT NULL DEFAULT '0',
  `style_classes` tinyint NOT NULL DEFAULT '0',
  `xsl` tinyint NOT NULL DEFAULT '0',
  `component` varchar(40) DEFAULT NULL,
  `def_enabled` tinyint DEFAULT '0',
  `top_item` tinyint NOT NULL DEFAULT '0',
  `order_nr` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`pc_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `copg_pc_def`
--

LOCK TABLES `copg_pc_def` WRITE;
/*!40000 ALTER TABLE `copg_pc_def` DISABLE KEYS */;
INSERT INTO `copg_pc_def` VALUES ('amdfrm','AMDForm','Page',0,0,0,'components/ILIAS/Portfolio',0,1,139),('amdpl','AMDPageList','classes',0,0,0,'components/ILIAS/Wiki',0,1,240),('blog','Blog','PC/Blog',0,0,0,'components/ILIAS/COPage',0,1,100),('cach','ConsultationHours','Page',0,0,0,'components/ILIAS/Portfolio',0,1,138),('contpop','ContentPopup','PC/InteractiveImage',0,0,0,'components/ILIAS/COPage',1,0,0),('dtab','DataTable','PC/Table',0,1,0,'components/ILIAS/COPage',1,1,50),('flit','FileItem','PC/FileList',0,1,0,'components/ILIAS/COPage',1,0,0),('flst','FileList','PC/FileList',0,1,0,'components/ILIAS/COPage',1,1,40),('gcell','GridCell','PC/Grid',0,0,0,'components/ILIAS/COPage',1,0,0),('grid','Grid','PC/Grid',0,0,0,'components/ILIAS/COPage',1,1,67),('iim','InteractiveImage','classes',1,1,0,'components/ILIAS/COPage',1,1,100),('incl','ContentInclude','PC/ContentInclude',1,1,0,'components/ILIAS/COPage',0,1,110),('lay','LayoutTemplate','PC/LayoutTemplate',0,0,0,'components/ILIAS/COPage',0,1,195),('lhist','LearningHistory','classes',0,0,0,'components/ILIAS/LearningHistory',0,1,136),('li','ListItem','PC/List',0,0,0,'components/ILIAS/COPage',1,0,0),('list','List','PC/List',0,1,0,'components/ILIAS/COPage',1,1,220),('lpe','LoginPageElement','PC/Login',0,0,0,'components/ILIAS/COPage',0,1,120),('lsocurriculum','Curriculum','classes/PageEditor',0,0,0,'components/ILIAS/LearningSequence',0,1,127),('lsostartbutton','Launcher','classes/PageEditor',0,0,0,'components/ILIAS/LearningSequence',0,1,127),('map','Map','PC/Map',0,0,0,'components/ILIAS/COPage',0,1,280),('mcrs','MyCourses','Page',0,0,0,'components/ILIAS/Portfolio',0,1,137),('media','MediaObject','PC/MediaObject',0,1,0,'components/ILIAS/COPage',1,1,20),('par','Paragraph','PC/Paragraph',1,1,0,'components/ILIAS/COPage',1,1,10),('pcqst','Question','PC/Question',0,0,0,'components/ILIAS/COPage',0,1,55),('plach','PlaceHolder','PC/PlaceHolder',0,1,0,'components/ILIAS/COPage',0,1,5),('plug','Plugged','classes',0,0,0,'components/ILIAS/COPage',0,1,210),('prgactionnote','PRGActionNote','classes/PageEditor',0,0,0,'components/ILIAS/StudyProgramme',0,1,128),('prgstatusinfo','PRGStatusInfo','classes/PageEditor',0,0,0,'components/ILIAS/StudyProgramme',0,1,127),('prof','Profile','PC/Profile',0,0,0,'components/ILIAS/COPage',0,1,130),('repobj','Resources','PC/Resources',0,0,0,'components/ILIAS/COPage',0,1,150),('sec','Section','PC/Section',0,1,0,'components/ILIAS/COPage',1,1,60),('skills','Skills','PC/Skills',0,0,0,'components/ILIAS/COPage',0,1,160),('src','SourceCode','PC/SourceCode',0,0,0,'components/ILIAS/COPage',1,1,190),('tab','Table','PC/Table',0,1,0,'components/ILIAS/COPage',1,1,200),('tabs','Tabs','PC/Tabs',0,1,0,'components/ILIAS/COPage',1,1,65),('tabstab','Tab','PC/Tabs',0,0,0,'components/ILIAS/COPage',1,0,0),('td','TableData','PC/Table',0,0,0,'components/ILIAS/COPage',1,0,0),('templ','ContentTemplate','PC/ContentTemplate',0,0,0,'components/ILIAS/COPage',0,1,200),('vrfc','Verification','PC/Verification',0,0,0,'components/ILIAS/COPage',0,1,180);
/*!40000 ALTER TABLE `copg_pc_def` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `copg_pobj_def`
--

DROP TABLE IF EXISTS `copg_pobj_def`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `copg_pobj_def` (
  `parent_type` varchar(20) NOT NULL DEFAULT '',
  `class_name` varchar(80) NOT NULL DEFAULT '',
  `directory` varchar(40) DEFAULT NULL,
  `component` varchar(40) DEFAULT NULL,
  PRIMARY KEY (`parent_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `copg_pobj_def`
--

LOCK TABLES `copg_pobj_def` WRITE;
/*!40000 ALTER TABLE `copg_pobj_def` DISABLE KEYS */;
INSERT INTO `copg_pobj_def` VALUES ('aout','ilLogoutPage','classes','components/ILIAS/Authentication'),('auth','ilLoginPage','classes','components/ILIAS/Authentication'),('blp','ilBlogPosting','classes','components/ILIAS/Blog'),('cont','ilContainerPage','Page','components/ILIAS/Container'),('copa','ilContentPagePage','classes','components/ILIAS/ContentPage'),('cstr','ilContainerStartObjectsPage','StartObjects','components/ILIAS/Container'),('dclf','ilDclDetailedViewDefinition','classes/DetailedView','components/ILIAS/DataCollection'),('dshs','ilDashboardPage','classes','components/ILIAS/Dashboard'),('frm','ilForumPage','classes/CoPage','components/ILIAS/Forum'),('impr','ilImprint','classes','components/ILIAS/Imprint'),('lm','ilLMPage','classes','components/ILIAS/LearningModule'),('lobj','ilLOPage','classes/Objectives','components/ILIAS/Course'),('lsoe','ilLSOExtroPage','classes/PageEditor','components/ILIAS/LearningSequence'),('lsoi','ilLSOIntroPage','classes/PageEditor','components/ILIAS/LearningSequence'),('mep','ilMediaPoolPage','classes','components/ILIAS/MediaPool'),('prtf','ilPortfolioPage','Page','components/ILIAS/Portfolio'),('prtt','ilPortfolioTemplatePage','Template','components/ILIAS/Portfolio'),('qfbg','ilAssGenFeedbackPage','classes/feedback','components/ILIAS/TestQuestionPool'),('qfbs','ilAssSpecFeedbackPage','classes/feedback','components/ILIAS/TestQuestionPool'),('qht','ilAssHintPage','classes','components/ILIAS/TestQuestionPool'),('qpl','ilAssQuestionPage','classes','components/ILIAS/TestQuestionPool'),('sahs','ilSCORM2004Page','classes','components/ILIAS/Scorm2004'),('stys','ilPageLayoutPage','Layout/classes','components/ILIAS/COPage'),('term','ilGlossaryDefPage','classes','components/ILIAS/Glossary'),('tst','ilTestPage','classes/PageEditor','components/ILIAS/Test'),('wpg','ilWikiPage','classes','components/ILIAS/Wiki');
/*!40000 ALTER TABLE `copg_pobj_def` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `copg_section_timings`
--

DROP TABLE IF EXISTS `copg_section_timings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `copg_section_timings` (
  `page_id` int NOT NULL DEFAULT '0',
  `parent_type` varchar(10) NOT NULL DEFAULT '',
  `unix_ts` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`page_id`,`parent_type`,`unix_ts`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `copg_section_timings`
--

LOCK TABLES `copg_section_timings` WRITE;
/*!40000 ALTER TABLE `copg_section_timings` DISABLE KEYS */;
/*!40000 ALTER TABLE `copg_section_timings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `copy_wizard_options`
--

DROP TABLE IF EXISTS `copy_wizard_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `copy_wizard_options` (
  `copy_id` int NOT NULL DEFAULT '0',
  `source_id` int NOT NULL DEFAULT '0',
  `options` longtext,
  PRIMARY KEY (`copy_id`,`source_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `copy_wizard_options`
--

LOCK TABLES `copy_wizard_options` WRITE;
/*!40000 ALTER TABLE `copy_wizard_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `copy_wizard_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_auxilaryresource`
--

DROP TABLE IF EXISTS `cp_auxilaryresource`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_auxilaryresource` (
  `auxiliaryresourceid` varchar(255) DEFAULT NULL,
  `cp_node_id` int NOT NULL DEFAULT '0',
  `purpose` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`cp_node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_auxilaryresource`
--

LOCK TABLES `cp_auxilaryresource` WRITE;
/*!40000 ALTER TABLE `cp_auxilaryresource` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_auxilaryresource` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_condition`
--

DROP TABLE IF EXISTS `cp_condition`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_condition` (
  `c_condition` varchar(50) DEFAULT NULL,
  `cp_node_id` int NOT NULL DEFAULT '0',
  `measurethreshold` varchar(50) DEFAULT NULL,
  `c_operator` varchar(50) DEFAULT NULL,
  `referencedobjective` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`cp_node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_condition`
--

LOCK TABLES `cp_condition` WRITE;
/*!40000 ALTER TABLE `cp_condition` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_condition` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_datamap`
--

DROP TABLE IF EXISTS `cp_datamap`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_datamap` (
  `sco_node_id` int NOT NULL DEFAULT '0',
  `cp_node_id` int NOT NULL DEFAULT '0',
  `slm_id` int NOT NULL DEFAULT '0',
  `target_id` varchar(4000) NOT NULL DEFAULT '',
  `read_shared_data` tinyint DEFAULT '1',
  `write_shared_data` tinyint DEFAULT '1',
  PRIMARY KEY (`cp_node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_datamap`
--

LOCK TABLES `cp_datamap` WRITE;
/*!40000 ALTER TABLE `cp_datamap` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_datamap` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_dependency`
--

DROP TABLE IF EXISTS `cp_dependency`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_dependency` (
  `cp_node_id` int NOT NULL DEFAULT '0',
  `resourceid` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`cp_node_id`),
  KEY `i2_idx` (`resourceid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_dependency`
--

LOCK TABLES `cp_dependency` WRITE;
/*!40000 ALTER TABLE `cp_dependency` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_dependency` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_file`
--

DROP TABLE IF EXISTS `cp_file`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_file` (
  `cp_node_id` int NOT NULL DEFAULT '0',
  `href` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`cp_node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_file`
--

LOCK TABLES `cp_file` WRITE;
/*!40000 ALTER TABLE `cp_file` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_file` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_hidelmsui`
--

DROP TABLE IF EXISTS `cp_hidelmsui`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_hidelmsui` (
  `cp_node_id` int NOT NULL DEFAULT '0',
  `value` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`cp_node_id`),
  KEY `i1_idx` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_hidelmsui`
--

LOCK TABLES `cp_hidelmsui` WRITE;
/*!40000 ALTER TABLE `cp_hidelmsui` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_hidelmsui` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_item`
--

DROP TABLE IF EXISTS `cp_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_item` (
  `completionthreshold` varchar(50) DEFAULT '1.0',
  `cp_node_id` int NOT NULL DEFAULT '0',
  `datafromlms` varchar(4000) DEFAULT NULL,
  `id` varchar(200) DEFAULT NULL,
  `isvisible` varchar(32) DEFAULT NULL,
  `parameters` varchar(255) DEFAULT NULL,
  `resourceid` varchar(200) DEFAULT NULL,
  `sequencingid` varchar(50) DEFAULT NULL,
  `timelimitaction` varchar(30) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `progressweight` varchar(50) DEFAULT '1.0',
  `completedbymeasure` tinyint DEFAULT '0',
  PRIMARY KEY (`cp_node_id`),
  KEY `i1_idx` (`id`),
  KEY `i2_idx` (`sequencingid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_item`
--

LOCK TABLES `cp_item` WRITE;
/*!40000 ALTER TABLE `cp_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_manifest`
--

DROP TABLE IF EXISTS `cp_manifest`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_manifest` (
  `base` varchar(200) DEFAULT NULL,
  `cp_node_id` int NOT NULL DEFAULT '0',
  `defaultorganization` varchar(255) DEFAULT NULL,
  `id` varchar(200) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `uri` varchar(255) DEFAULT NULL,
  `version` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`cp_node_id`),
  KEY `i1_idx` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_manifest`
--

LOCK TABLES `cp_manifest` WRITE;
/*!40000 ALTER TABLE `cp_manifest` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_manifest` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_mapinfo`
--

DROP TABLE IF EXISTS `cp_mapinfo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_mapinfo` (
  `cp_node_id` int NOT NULL DEFAULT '0',
  `readnormalmeasure` tinyint DEFAULT NULL,
  `readsatisfiedstatus` tinyint DEFAULT NULL,
  `targetobjectiveid` varchar(255) DEFAULT NULL,
  `writenormalmeasure` tinyint DEFAULT NULL,
  `writesatisfiedstatus` tinyint DEFAULT NULL,
  PRIMARY KEY (`cp_node_id`),
  KEY `i1_idx` (`targetobjectiveid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_mapinfo`
--

LOCK TABLES `cp_mapinfo` WRITE;
/*!40000 ALTER TABLE `cp_mapinfo` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_mapinfo` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_node`
--

DROP TABLE IF EXISTS `cp_node`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_node` (
  `cp_node_id` int NOT NULL DEFAULT '0',
  `nodename` varchar(50) DEFAULT NULL,
  `slm_id` int DEFAULT NULL,
  PRIMARY KEY (`cp_node_id`),
  KEY `i2_idx` (`nodename`),
  KEY `i3_idx` (`slm_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_node`
--

LOCK TABLES `cp_node` WRITE;
/*!40000 ALTER TABLE `cp_node` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_node` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_node_seq`
--

DROP TABLE IF EXISTS `cp_node_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_node_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_node_seq`
--

LOCK TABLES `cp_node_seq` WRITE;
/*!40000 ALTER TABLE `cp_node_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_node_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_objective`
--

DROP TABLE IF EXISTS `cp_objective`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_objective` (
  `cp_node_id` int NOT NULL DEFAULT '0',
  `minnormalmeasure` varchar(50) DEFAULT NULL,
  `objectiveid` varchar(200) DEFAULT NULL,
  `c_primary` tinyint DEFAULT NULL,
  `satisfiedbymeasure` tinyint DEFAULT NULL,
  PRIMARY KEY (`cp_node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_objective`
--

LOCK TABLES `cp_objective` WRITE;
/*!40000 ALTER TABLE `cp_objective` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_objective` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_organization`
--

DROP TABLE IF EXISTS `cp_organization`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_organization` (
  `cp_node_id` int NOT NULL DEFAULT '0',
  `id` varchar(200) DEFAULT NULL,
  `objectivesglobtosys` tinyint DEFAULT NULL,
  `sequencingid` varchar(50) DEFAULT NULL,
  `structure` varchar(200) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`cp_node_id`),
  KEY `i1_idx` (`id`),
  KEY `i2_idx` (`sequencingid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_organization`
--

LOCK TABLES `cp_organization` WRITE;
/*!40000 ALTER TABLE `cp_organization` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_organization` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_package`
--

DROP TABLE IF EXISTS `cp_package`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_package` (
  `created` varchar(20) DEFAULT NULL,
  `c_identifier` varchar(255) DEFAULT NULL,
  `jsdata` longtext,
  `modified` varchar(20) DEFAULT NULL,
  `obj_id` int NOT NULL DEFAULT '0',
  `persistprevattempts` int DEFAULT NULL,
  `c_settings` varchar(255) DEFAULT NULL,
  `xmldata` longtext,
  `activitytree` longtext,
  `global_to_system` tinyint NOT NULL DEFAULT '1',
  `shared_data_global_to_system` tinyint DEFAULT '1',
  PRIMARY KEY (`obj_id`),
  KEY `i1_idx` (`c_identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_package`
--

LOCK TABLES `cp_package` WRITE;
/*!40000 ALTER TABLE `cp_package` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_package` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_resource`
--

DROP TABLE IF EXISTS `cp_resource`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_resource` (
  `base` varchar(4000) DEFAULT NULL,
  `cp_node_id` int NOT NULL DEFAULT '0',
  `href` varchar(4000) DEFAULT NULL,
  `id` varchar(200) DEFAULT NULL,
  `scormtype` varchar(32) DEFAULT NULL,
  `c_type` varchar(30) DEFAULT NULL,
  PRIMARY KEY (`cp_node_id`),
  KEY `i1_idx` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_resource`
--

LOCK TABLES `cp_resource` WRITE;
/*!40000 ALTER TABLE `cp_resource` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_resource` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_rule`
--

DROP TABLE IF EXISTS `cp_rule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_rule` (
  `action` varchar(50) DEFAULT NULL,
  `childactivityset` varchar(50) DEFAULT NULL,
  `conditioncombination` varchar(50) DEFAULT NULL,
  `cp_node_id` int NOT NULL DEFAULT '0',
  `minimumcount` int DEFAULT NULL,
  `minimumpercent` varchar(50) DEFAULT NULL,
  `c_type` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`cp_node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_rule`
--

LOCK TABLES `cp_rule` WRITE;
/*!40000 ALTER TABLE `cp_rule` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_rule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_sequencing`
--

DROP TABLE IF EXISTS `cp_sequencing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_sequencing` (
  `activityabsdurlimit` varchar(20) DEFAULT NULL,
  `activityexpdurlimit` varchar(20) DEFAULT NULL,
  `attemptabsdurlimit` varchar(20) DEFAULT NULL,
  `attemptexpdurlimit` varchar(20) DEFAULT NULL,
  `attemptlimit` int DEFAULT NULL,
  `begintimelimit` varchar(20) DEFAULT NULL,
  `choice` tinyint DEFAULT NULL,
  `choiceexit` tinyint DEFAULT NULL,
  `completionbycontent` tinyint DEFAULT NULL,
  `constrainchoice` tinyint DEFAULT NULL,
  `cp_node_id` int NOT NULL DEFAULT '0',
  `endtimelimit` varchar(20) DEFAULT NULL,
  `flow` tinyint DEFAULT NULL,
  `forwardonly` tinyint DEFAULT NULL,
  `id` varchar(200) DEFAULT NULL,
  `measuresatisfactive` tinyint DEFAULT NULL,
  `objectivemeasweight` double DEFAULT NULL,
  `objectivebycontent` tinyint DEFAULT NULL,
  `preventactivation` tinyint DEFAULT NULL,
  `randomizationtiming` varchar(50) DEFAULT NULL,
  `reorderchildren` tinyint DEFAULT NULL,
  `requiredcompleted` varchar(50) DEFAULT NULL,
  `requiredincomplete` varchar(50) DEFAULT NULL,
  `requirednotsatisfied` varchar(50) DEFAULT NULL,
  `requiredforsatisfied` varchar(50) DEFAULT NULL,
  `rollupobjectivesatis` tinyint DEFAULT NULL,
  `rollupprogcompletion` tinyint DEFAULT NULL,
  `selectcount` int DEFAULT NULL,
  `selectiontiming` varchar(50) DEFAULT NULL,
  `sequencingid` varchar(50) DEFAULT NULL,
  `tracked` tinyint DEFAULT NULL,
  `usecurattemptobjinfo` tinyint DEFAULT NULL,
  `usecurattemptproginfo` tinyint DEFAULT NULL,
  PRIMARY KEY (`cp_node_id`),
  KEY `i1_idx` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_sequencing`
--

LOCK TABLES `cp_sequencing` WRITE;
/*!40000 ALTER TABLE `cp_sequencing` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_sequencing` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_suspend`
--

DROP TABLE IF EXISTS `cp_suspend`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_suspend` (
  `data` longtext,
  `user_id` int NOT NULL,
  `obj_id` int NOT NULL,
  PRIMARY KEY (`user_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_suspend`
--

LOCK TABLES `cp_suspend` WRITE;
/*!40000 ALTER TABLE `cp_suspend` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_suspend` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cp_tree`
--

DROP TABLE IF EXISTS `cp_tree`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cp_tree` (
  `child` int NOT NULL DEFAULT '0',
  `depth` int DEFAULT NULL,
  `lft` int DEFAULT NULL,
  `obj_id` int NOT NULL DEFAULT '0',
  `parent` int DEFAULT NULL,
  `rgt` int DEFAULT NULL,
  PRIMARY KEY (`obj_id`,`child`),
  KEY `i1_idx` (`child`),
  KEY `i2_idx` (`obj_id`),
  KEY `i3_idx` (`parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cp_tree`
--

LOCK TABLES `cp_tree` WRITE;
/*!40000 ALTER TABLE `cp_tree` DISABLE KEYS */;
/*!40000 ALTER TABLE `cp_tree` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cron_job`
--

DROP TABLE IF EXISTS `cron_job`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cron_job` (
  `job_id` varchar(50) NOT NULL DEFAULT '',
  `component` varchar(200) DEFAULT NULL,
  `schedule_type` tinyint DEFAULT NULL,
  `schedule_value` int DEFAULT NULL,
  `job_status` tinyint DEFAULT NULL,
  `job_status_user_id` int DEFAULT NULL,
  `job_status_type` tinyint DEFAULT NULL,
  `job_status_ts` int DEFAULT NULL,
  `job_result_status` tinyint DEFAULT NULL,
  `job_result_user_id` int DEFAULT NULL,
  `job_result_code` varchar(64) DEFAULT NULL,
  `job_result_message` varchar(400) DEFAULT NULL,
  `job_result_type` tinyint DEFAULT NULL,
  `job_result_ts` int DEFAULT NULL,
  `class` varchar(255) DEFAULT NULL,
  `path` varchar(400) DEFAULT NULL,
  `running_ts` int DEFAULT NULL,
  `job_result_dur` int DEFAULT NULL,
  `alive_ts` int DEFAULT NULL,
  PRIMARY KEY (`job_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cron_job`
--

LOCK TABLES `cron_job` WRITE;
/*!40000 ALTER TABLE `cron_job` DISABLE KEYS */;
INSERT INTO `cron_job` VALUES ('auth_destroy_expired_sessions','components/ILIAS/Authentication',3,1,1,0,0,1702399177,NULL,NULL,NULL,NULL,NULL,NULL,'ilAuthDestroyExpiredSessionsCron',NULL,NULL,NULL,NULL),('book_notification','components/ILIAS/BookingManager',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ilBookCronNotification',NULL,NULL,NULL,NULL),('book_pref_book','components/ILIAS/BookingManager',1,NULL,1,0,0,1702399177,NULL,NULL,NULL,NULL,NULL,NULL,'ilBookingPrefBookCron',NULL,NULL,NULL,NULL),('cal_consultation','components/ILIAS/Calendar',0,0,0,0,0,0,0,0,'','',0,0,'ilConsultationHourCron','Services/Calendar/classes/ConsultationHours/',0,0,0),('cal_remote_reader','components/ILIAS/Calendar',2,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ilCalendarCronRemoteReader','Services/Calendar/classes/Cron/',NULL,NULL,NULL),('certificate','components/ILIAS/Certificate',2,1,1,0,0,1702399177,NULL,NULL,NULL,NULL,NULL,NULL,'ilCertificateCron',NULL,NULL,NULL,NULL),('copg_history_cleanup','components/ILIAS/COPage',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ilCleanCOPageHistoryCronjob','Services/COPage/Cron',NULL,NULL,NULL),('crs_timings_reminder','components/ILIAS/Course',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ilTimingsCronReminder',NULL,NULL,NULL,NULL),('ecs_task_handler','components/ILIAS/WebServices',3,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ilCronEcsTaskScheduler',NULL,NULL,NULL,NULL),('exc_feedback_notification','components/ILIAS/Exercise',0,0,1,0,0,1381511097,0,0,'','',0,0,'ilExcCronFeedbackNotification',NULL,0,0,0),('exc_reminders','components/ILIAS/Exercise',1,NULL,1,0,0,1702399177,NULL,NULL,NULL,NULL,NULL,NULL,'ilExcCronReminders',NULL,NULL,NULL,NULL),('file_system_clean_temp_dir','components/ILIAS/Filesystem',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ilFileSystemCleanTempDirCron',NULL,NULL,NULL,NULL),('finish_unfinished_passes','components/ILIAS/Test',1,0,0,0,0,0,0,0,'','',0,0,'ilCronFinishUnfinishedTestPasses',NULL,0,0,0),('frm_notification','components/ILIAS/Forum',3,1,0,0,0,0,0,0,'','',0,0,'ilForumCronNotification',NULL,0,0,0),('ldap_sync','components/ILIAS/LDAP',0,0,0,0,0,0,0,0,'','',0,0,'ilLDAPCronSynchronization',NULL,0,0,0),('log_error_file_cleanup','components/ILIAS/Logging',4,10,0,0,0,0,0,0,'','',0,0,'ilLoggerCronCleanErrorFiles','Services/Logging/classes/error/',0,0,0),('lp_object_statistics','components/ILIAS/Tracking',0,0,1,0,0,1381511103,0,0,'','',0,0,'ilLPCronObjectStatistics',NULL,0,0,0),('lti_outcome','components/ILIAS/LTIProvider',2,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ilLTICronOutcomeService',NULL,NULL,NULL,NULL),('mail_notification','components/ILIAS/Mail',0,0,1,6,1,1481898063,NULL,6,'job_manual_reset','Cron job re-activated by admin',1,0,'ilMailCronNotification',NULL,0,0,0),('mail_orphaned_mails','components/ILIAS/Mail',1,1,0,0,0,0,0,0,'','',0,0,'ilMailCronOrphanedMails',NULL,0,0,0),('mem_min_members','components/ILIAS/Membership',0,0,1,0,0,1443610661,0,0,'','',0,0,'ilMembershipCronMinMembers','Services/Membership/classes/Cron',0,0,0),('mem_notification','components/ILIAS/Membership',1,0,0,0,0,0,0,0,'','',0,0,'ilMembershipCronNotifications','Services/Membership/classes/Cron',0,0,0),('meta_oer_harvester','components/ILIAS/MetaData',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ilCronOerHarvester',NULL,NULL,NULL,NULL),('orgunit_paths','components/ILIAS/OrgUnit',1,0,1,0,0,1472816001,0,0,'','',0,0,'ilCronUpdateOrgUnitPaths',NULL,0,0,0),('prg_invalidate_expired_progresses','components/ILIAS/StudyProgramme',4,1,1,0,0,1702399177,NULL,NULL,NULL,NULL,NULL,NULL,'ilPrgInvalidateExpiredProgressesCronJob',NULL,NULL,NULL,NULL),('prg_restart_assignments_temporal_progress','components/ILIAS/StudyProgramme',4,1,1,0,0,1702399177,NULL,NULL,NULL,NULL,NULL,NULL,'ilPrgRestartAssignmentsCronJob',NULL,NULL,NULL,NULL),('prg_update_progress','components/ILIAS/StudyProgramme',4,1,1,0,0,1702399177,NULL,NULL,NULL,NULL,NULL,NULL,'ilPrgUpdateProgressCronJob',NULL,NULL,NULL,NULL),('prg_user_not_restarted','components/ILIAS/StudyProgramme',4,1,1,0,0,1702399177,NULL,NULL,NULL,NULL,NULL,NULL,'ilPrgUserNotRestartedCronJob',NULL,NULL,NULL,NULL),('prg_user_risky_to_fail','components/ILIAS/StudyProgramme',4,1,1,0,0,1702399177,NULL,NULL,NULL,NULL,NULL,NULL,'ilPrgUserRiskyToFailCronJob',NULL,NULL,NULL,NULL),('skll_notification','components/ILIAS/Skill',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ilSkillNotifications',NULL,NULL,NULL,NULL),('src_lucene_indexer','components/ILIAS/Search',1,0,0,0,0,0,0,0,'','',0,0,'ilLuceneIndexer','Services/Search/classes/Lucene/',0,0,0),('survey_notification','components/ILIAS/Survey',0,0,1,0,0,1381511099,0,0,'','',0,0,'ilSurveyCronNotification',NULL,0,0,0),('sysc_trash','components/ILIAS/SystemCheck',5,1,0,0,0,0,0,0,'','',0,0,'ilSCCronTrash',NULL,0,0,0),('user_check_accounts','components/ILIAS/User',0,0,0,0,0,0,0,0,'','',0,0,'ilUserCronCheckAccounts',NULL,0,0,0),('user_inactivated','components/ILIAS/User',1,0,0,0,0,0,0,0,'','',0,0,'ilCronDeleteInactivatedUserAccounts',NULL,0,0,0),('user_inactive','components/ILIAS/User',1,0,0,0,0,0,0,0,'','',0,0,'ilCronDeleteInactiveUserAccounts',NULL,0,0,0),('user_never_logged_in','components/ILIAS/User',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ilCronDeleteNeverLoggedInUserAccounts',NULL,NULL,NULL,NULL),('wopi_crawler','components/ILIAS/WOPI',5,1,1,0,0,1702399177,NULL,NULL,NULL,NULL,NULL,NULL,'ilWOPICrawler',NULL,NULL,NULL,NULL),('xapi_deletion_cron','components/ILIAS/CmiXapi',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ilCmiXapiDelCron',NULL,NULL,NULL,NULL),('xapi_results_evaluation','components/ILIAS/CmiXapi',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ilXapiResultsCronjob',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `cron_job` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_archives`
--

DROP TABLE IF EXISTS `crs_archives`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_archives` (
  `archive_id` int NOT NULL DEFAULT '0',
  `course_id` int NOT NULL DEFAULT '0',
  `archive_name` varchar(255) DEFAULT NULL,
  `archive_type` tinyint NOT NULL DEFAULT '0',
  `archive_date` bigint DEFAULT NULL,
  `archive_size` int DEFAULT NULL,
  `archive_lang` varchar(16) DEFAULT NULL,
  PRIMARY KEY (`archive_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_archives`
--

LOCK TABLES `crs_archives` WRITE;
/*!40000 ALTER TABLE `crs_archives` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_archives` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_archives_seq`
--

DROP TABLE IF EXISTS `crs_archives_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_archives_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_archives_seq`
--

LOCK TABLES `crs_archives_seq` WRITE;
/*!40000 ALTER TABLE `crs_archives_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_archives_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_f_definitions`
--

DROP TABLE IF EXISTS `crs_f_definitions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_f_definitions` (
  `field_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `field_name` varchar(255) DEFAULT NULL,
  `field_type` tinyint NOT NULL DEFAULT '0',
  `field_values` longtext,
  `field_required` tinyint NOT NULL DEFAULT '0',
  `field_values_opt` varchar(1000) DEFAULT NULL,
  PRIMARY KEY (`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_f_definitions`
--

LOCK TABLES `crs_f_definitions` WRITE;
/*!40000 ALTER TABLE `crs_f_definitions` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_f_definitions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_f_definitions_seq`
--

DROP TABLE IF EXISTS `crs_f_definitions_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_f_definitions_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_f_definitions_seq`
--

LOCK TABLES `crs_f_definitions_seq` WRITE;
/*!40000 ALTER TABLE `crs_f_definitions_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_f_definitions_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_file`
--

DROP TABLE IF EXISTS `crs_file`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_file` (
  `file_id` int NOT NULL DEFAULT '0',
  `course_id` int NOT NULL DEFAULT '0',
  `file_name` char(64) DEFAULT NULL,
  `file_type` char(64) DEFAULT NULL,
  `file_size` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_file`
--

LOCK TABLES `crs_file` WRITE;
/*!40000 ALTER TABLE `crs_file` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_file` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_file_seq`
--

DROP TABLE IF EXISTS `crs_file_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_file_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_file_seq`
--

LOCK TABLES `crs_file_seq` WRITE;
/*!40000 ALTER TABLE `crs_file_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_file_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_groupings`
--

DROP TABLE IF EXISTS `crs_groupings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_groupings` (
  `crs_grp_id` int NOT NULL DEFAULT '0',
  `crs_ref_id` int NOT NULL DEFAULT '0',
  `crs_id` int NOT NULL DEFAULT '0',
  `unique_field` char(32) DEFAULT NULL,
  PRIMARY KEY (`crs_grp_id`),
  KEY `i1_idx` (`crs_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_groupings`
--

LOCK TABLES `crs_groupings` WRITE;
/*!40000 ALTER TABLE `crs_groupings` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_groupings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_items`
--

DROP TABLE IF EXISTS `crs_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_items` (
  `parent_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `timing_type` tinyint DEFAULT NULL,
  `timing_start` bigint NOT NULL DEFAULT '0',
  `timing_end` bigint NOT NULL DEFAULT '0',
  `suggestion_start` bigint NOT NULL DEFAULT '0',
  `suggestion_end` bigint NOT NULL DEFAULT '0',
  `changeable` tinyint NOT NULL DEFAULT '0',
  `visible` tinyint NOT NULL DEFAULT '0',
  `position` int DEFAULT NULL,
  `suggestion_start_rel` bigint DEFAULT '0',
  `suggestion_end_rel` bigint DEFAULT '0',
  PRIMARY KEY (`parent_id`,`obj_id`),
  KEY `ob_idx` (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_items`
--

LOCK TABLES `crs_items` WRITE;
/*!40000 ALTER TABLE `crs_items` DISABLE KEYS */;
INSERT INTO `crs_items` VALUES (1,9,1,1450792127,1450792127,1450792127,1450792127,0,0,0,0,0),(9,8,1,1450792127,1450792127,1450792127,1450792127,0,0,0,0,0),(9,12,1,1481898045,1481898045,1481898045,1481898045,0,0,0,0,0),(9,16,1,1450795974,1450795974,1450795974,1450795974,0,0,0,0,0),(9,17,1,1481897710,1481897710,1481897710,1481897710,0,0,0,0,0),(9,18,1,1450795859,1450795859,1450795859,1450795859,0,0,0,0,0),(9,22,1,1450796001,1450796001,1450796001,1450796001,0,0,0,0,0),(9,23,1,1450795847,1450795847,1450795847,1450795847,0,0,0,0,0),(9,29,1,1450795894,1450795894,1450795894,1450795894,0,0,0,0,0),(9,30,1,1450796011,1450796011,1450796011,1450796011,0,0,0,0,0),(9,32,1,1481899353,1481899353,1481899353,1481899353,0,0,0,0,0),(9,34,1,1482324927,1482324927,1482324927,1482324927,0,0,0,0,0),(9,36,1,1481898367,1481898367,1481898367,1481898367,0,0,0,0,0),(9,37,1,1450796232,1450796232,1450796232,1450796232,0,0,0,0,0),(9,39,1,1481899398,1481899398,1481899398,1481899398,0,0,0,0,0),(9,52,1,1450795488,1450795488,1450795488,1450795488,0,0,0,0,0),(9,53,1,1450796052,1450796052,1450796052,1450796052,0,0,0,0,0),(9,55,1,1481899451,1481899451,1481899451,1481899451,0,0,0,0,0),(9,57,1,1450796335,1450796335,1450796335,1450796335,0,0,0,0,0),(9,64,1,1450795969,1450795969,1450795969,1450795969,0,0,0,0,0);
/*!40000 ALTER TABLE `crs_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_lm_history`
--

DROP TABLE IF EXISTS `crs_lm_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_lm_history` (
  `usr_id` int NOT NULL DEFAULT '0',
  `crs_ref_id` int NOT NULL DEFAULT '0',
  `lm_ref_id` int NOT NULL DEFAULT '0',
  `lm_page_id` int NOT NULL DEFAULT '0',
  `last_access` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`usr_id`,`crs_ref_id`,`lm_ref_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_lm_history`
--

LOCK TABLES `crs_lm_history` WRITE;
/*!40000 ALTER TABLE `crs_lm_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_lm_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_objective_lm`
--

DROP TABLE IF EXISTS `crs_objective_lm`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_objective_lm` (
  `lm_ass_id` int NOT NULL DEFAULT '0',
  `objective_id` int NOT NULL DEFAULT '0',
  `ref_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `type` char(6) DEFAULT NULL,
  `position` int DEFAULT '0',
  PRIMARY KEY (`lm_ass_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_objective_lm`
--

LOCK TABLES `crs_objective_lm` WRITE;
/*!40000 ALTER TABLE `crs_objective_lm` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_objective_lm` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_objective_lm_seq`
--

DROP TABLE IF EXISTS `crs_objective_lm_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_objective_lm_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_objective_lm_seq`
--

LOCK TABLES `crs_objective_lm_seq` WRITE;
/*!40000 ALTER TABLE `crs_objective_lm_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_objective_lm_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_objective_qst`
--

DROP TABLE IF EXISTS `crs_objective_qst`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_objective_qst` (
  `qst_ass_id` int NOT NULL DEFAULT '0',
  `objective_id` int NOT NULL DEFAULT '0',
  `ref_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `question_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`qst_ass_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_objective_qst`
--

LOCK TABLES `crs_objective_qst` WRITE;
/*!40000 ALTER TABLE `crs_objective_qst` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_objective_qst` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_objective_qst_seq`
--

DROP TABLE IF EXISTS `crs_objective_qst_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_objective_qst_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_objective_qst_seq`
--

LOCK TABLES `crs_objective_qst_seq` WRITE;
/*!40000 ALTER TABLE `crs_objective_qst_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_objective_qst_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_objective_status`
--

DROP TABLE IF EXISTS `crs_objective_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_objective_status` (
  `objective_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `status` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`objective_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_objective_status`
--

LOCK TABLES `crs_objective_status` WRITE;
/*!40000 ALTER TABLE `crs_objective_status` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_objective_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_objective_status_p`
--

DROP TABLE IF EXISTS `crs_objective_status_p`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_objective_status_p` (
  `objective_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`objective_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_objective_status_p`
--

LOCK TABLES `crs_objective_status_p` WRITE;
/*!40000 ALTER TABLE `crs_objective_status_p` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_objective_status_p` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_objective_tst`
--

DROP TABLE IF EXISTS `crs_objective_tst`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_objective_tst` (
  `test_objective_id` int NOT NULL DEFAULT '0',
  `objective_id` int NOT NULL DEFAULT '0',
  `ref_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `tst_status` tinyint DEFAULT NULL,
  `tst_limit` tinyint DEFAULT NULL,
  `tst_limit_p` smallint NOT NULL DEFAULT '0',
  PRIMARY KEY (`test_objective_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_objective_tst`
--

LOCK TABLES `crs_objective_tst` WRITE;
/*!40000 ALTER TABLE `crs_objective_tst` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_objective_tst` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_objective_tst_seq`
--

DROP TABLE IF EXISTS `crs_objective_tst_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_objective_tst_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_objective_tst_seq`
--

LOCK TABLES `crs_objective_tst_seq` WRITE;
/*!40000 ALTER TABLE `crs_objective_tst_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_objective_tst_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_objectives`
--

DROP TABLE IF EXISTS `crs_objectives`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_objectives` (
  `crs_id` int NOT NULL DEFAULT '0',
  `objective_id` int NOT NULL DEFAULT '0',
  `title` varchar(70) DEFAULT NULL,
  `description` varchar(500) DEFAULT NULL,
  `position` int NOT NULL DEFAULT '0',
  `created` int NOT NULL DEFAULT '0',
  `active` tinyint DEFAULT '1',
  `passes` smallint DEFAULT '0',
  PRIMARY KEY (`objective_id`),
  KEY `i1_idx` (`crs_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_objectives`
--

LOCK TABLES `crs_objectives` WRITE;
/*!40000 ALTER TABLE `crs_objectives` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_objectives` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_objectives_seq`
--

DROP TABLE IF EXISTS `crs_objectives_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_objectives_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_objectives_seq`
--

LOCK TABLES `crs_objectives_seq` WRITE;
/*!40000 ALTER TABLE `crs_objectives_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_objectives_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_reference_settings`
--

DROP TABLE IF EXISTS `crs_reference_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_reference_settings` (
  `obj_id` int NOT NULL DEFAULT '0',
  `member_update` tinyint NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_reference_settings`
--

LOCK TABLES `crs_reference_settings` WRITE;
/*!40000 ALTER TABLE `crs_reference_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_reference_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_settings`
--

DROP TABLE IF EXISTS `crs_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_settings` (
  `obj_id` int NOT NULL DEFAULT '0',
  `syllabus` varchar(4000) DEFAULT NULL,
  `contact_name` varchar(255) DEFAULT NULL,
  `contact_responsibility` varchar(255) DEFAULT NULL,
  `contact_phone` varchar(255) DEFAULT NULL,
  `contact_email` varchar(255) DEFAULT NULL,
  `contact_consultation` varchar(4000) DEFAULT NULL,
  `activation_type` tinyint NOT NULL DEFAULT '0',
  `activation_start` bigint DEFAULT NULL,
  `activation_end` bigint DEFAULT NULL,
  `sub_limitation_type` tinyint NOT NULL DEFAULT '0',
  `sub_start` bigint DEFAULT NULL,
  `sub_end` bigint DEFAULT NULL,
  `sub_type` int DEFAULT NULL,
  `sub_password` varchar(32) DEFAULT NULL,
  `sub_mem_limit` tinyint NOT NULL DEFAULT '0',
  `sub_max_members` int DEFAULT NULL,
  `sub_notify` int DEFAULT NULL,
  `view_mode` tinyint NOT NULL DEFAULT '0',
  `sortorder` int DEFAULT NULL,
  `archive_start` bigint DEFAULT NULL,
  `archive_end` bigint DEFAULT NULL,
  `archive_type` int DEFAULT NULL,
  `abo` tinyint DEFAULT '1',
  `waiting_list` tinyint NOT NULL DEFAULT '1',
  `important` varchar(4000) DEFAULT NULL,
  `show_members` tinyint NOT NULL DEFAULT '1',
  `latitude` varchar(30) DEFAULT NULL,
  `longitude` varchar(30) DEFAULT NULL,
  `location_zoom` int NOT NULL DEFAULT '0',
  `enable_course_map` tinyint NOT NULL DEFAULT '0',
  `session_limit` tinyint NOT NULL DEFAULT '0',
  `session_prev` bigint NOT NULL DEFAULT '-1',
  `session_next` bigint NOT NULL DEFAULT '-1',
  `reg_ac_enabled` tinyint NOT NULL DEFAULT '0',
  `reg_ac` varchar(32) DEFAULT NULL,
  `status_dt` tinyint DEFAULT '2',
  `auto_notification` tinyint NOT NULL DEFAULT '1',
  `mail_members_type` tinyint DEFAULT '1',
  `crs_start` bigint DEFAULT NULL,
  `crs_end` bigint DEFAULT NULL,
  `leave_end` bigint DEFAULT NULL,
  `auto_wait` tinyint NOT NULL DEFAULT '0',
  `min_members` smallint DEFAULT NULL,
  `show_members_export` int DEFAULT NULL,
  `timing_mode` tinyint DEFAULT '0',
  `period_start` datetime DEFAULT NULL,
  `period_end` datetime DEFAULT NULL,
  `period_time_indication` int NOT NULL DEFAULT '0',
  `target_group` varchar(4000) DEFAULT NULL,
  `tutorial_support_block` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_settings`
--

LOCK TABLES `crs_settings` WRITE;
/*!40000 ALTER TABLE `crs_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_start`
--

DROP TABLE IF EXISTS `crs_start`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_start` (
  `crs_start_id` int NOT NULL DEFAULT '0',
  `crs_id` int NOT NULL DEFAULT '0',
  `item_ref_id` int NOT NULL DEFAULT '0',
  `pos` int DEFAULT NULL,
  PRIMARY KEY (`crs_start_id`),
  KEY `i1_idx` (`crs_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_start`
--

LOCK TABLES `crs_start` WRITE;
/*!40000 ALTER TABLE `crs_start` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_start` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_start_seq`
--

DROP TABLE IF EXISTS `crs_start_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_start_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_start_seq`
--

LOCK TABLES `crs_start_seq` WRITE;
/*!40000 ALTER TABLE `crs_start_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_start_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_timings_exceeded`
--

DROP TABLE IF EXISTS `crs_timings_exceeded`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_timings_exceeded` (
  `user_id` int NOT NULL DEFAULT '0',
  `ref_id` int NOT NULL DEFAULT '0',
  `sent` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`user_id`,`ref_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_timings_exceeded`
--

LOCK TABLES `crs_timings_exceeded` WRITE;
/*!40000 ALTER TABLE `crs_timings_exceeded` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_timings_exceeded` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_timings_planed`
--

DROP TABLE IF EXISTS `crs_timings_planed`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_timings_planed` (
  `item_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `planed_start` bigint NOT NULL DEFAULT '0',
  `planed_end` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`item_id`,`usr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_timings_planed`
--

LOCK TABLES `crs_timings_planed` WRITE;
/*!40000 ALTER TABLE `crs_timings_planed` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_timings_planed` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_timings_started`
--

DROP TABLE IF EXISTS `crs_timings_started`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_timings_started` (
  `user_id` int NOT NULL DEFAULT '0',
  `ref_id` int NOT NULL DEFAULT '0',
  `sent` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`user_id`,`ref_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_timings_started`
--

LOCK TABLES `crs_timings_started` WRITE;
/*!40000 ALTER TABLE `crs_timings_started` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_timings_started` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_timings_user`
--

DROP TABLE IF EXISTS `crs_timings_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_timings_user` (
  `ref_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `sstart` bigint NOT NULL DEFAULT '0',
  `ssend` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`ref_id`,`usr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_timings_user`
--

LOCK TABLES `crs_timings_user` WRITE;
/*!40000 ALTER TABLE `crs_timings_user` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_timings_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_timings_usr_accept`
--

DROP TABLE IF EXISTS `crs_timings_usr_accept`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_timings_usr_accept` (
  `crs_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `accept` tinyint NOT NULL DEFAULT '0',
  `remark` varchar(4000) DEFAULT NULL,
  `visible` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`crs_id`,`usr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_timings_usr_accept`
--

LOCK TABLES `crs_timings_usr_accept` WRITE;
/*!40000 ALTER TABLE `crs_timings_usr_accept` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_timings_usr_accept` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_user_data`
--

DROP TABLE IF EXISTS `crs_user_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_user_data` (
  `usr_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0',
  `value` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`usr_id`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_user_data`
--

LOCK TABLES `crs_user_data` WRITE;
/*!40000 ALTER TABLE `crs_user_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_user_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `crs_waiting_list`
--

DROP TABLE IF EXISTS `crs_waiting_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `crs_waiting_list` (
  `obj_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `sub_time` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`usr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `crs_waiting_list`
--

LOCK TABLES `crs_waiting_list` WRITE;
/*!40000 ALTER TABLE `crs_waiting_list` DISABLE KEYS */;
/*!40000 ALTER TABLE `crs_waiting_list` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `data_cache`
--

DROP TABLE IF EXISTS `data_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `data_cache` (
  `module` varchar(50) NOT NULL DEFAULT 'common',
  `keyword` varchar(50) NOT NULL DEFAULT ' ',
  `value` longtext,
  PRIMARY KEY (`module`,`keyword`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `data_cache`
--

LOCK TABLES `data_cache` WRITE;
/*!40000 ALTER TABLE `data_cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `data_cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dav_lock`
--

DROP TABLE IF EXISTS `dav_lock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dav_lock` (
  `token` varchar(255) NOT NULL DEFAULT ' ',
  `obj_id` int NOT NULL DEFAULT '0',
  `node_id` int NOT NULL DEFAULT '0',
  `ilias_owner` int NOT NULL DEFAULT '0',
  `dav_owner` varchar(200) DEFAULT NULL,
  `expires` int NOT NULL DEFAULT '0',
  `depth` int NOT NULL DEFAULT '0',
  `type` char(1) DEFAULT 'w',
  `scope` char(1) DEFAULT 's',
  PRIMARY KEY (`token`),
  UNIQUE KEY `c1_idx` (`token`),
  KEY `i1_idx` (`obj_id`,`node_id`),
  KEY `i2_idx` (`obj_id`,`node_id`,`token`),
  KEY `i3_idx` (`expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dav_lock`
--

LOCK TABLES `dav_lock` WRITE;
/*!40000 ALTER TABLE `dav_lock` DISABLE KEYS */;
/*!40000 ALTER TABLE `dav_lock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dav_property`
--

DROP TABLE IF EXISTS `dav_property`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dav_property` (
  `obj_id` int NOT NULL DEFAULT '0',
  `node_id` int NOT NULL DEFAULT '0',
  `ns` varchar(120) NOT NULL DEFAULT 'DAV:',
  `name` varchar(120) NOT NULL DEFAULT ' ',
  `value` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`obj_id`,`node_id`,`name`,`ns`),
  KEY `i1_idx` (`obj_id`,`node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dav_property`
--

LOCK TABLES `dav_property` WRITE;
/*!40000 ALTER TABLE `dav_property` DISABLE KEYS */;
/*!40000 ALTER TABLE `dav_property` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dbk_translations`
--

DROP TABLE IF EXISTS `dbk_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dbk_translations` (
  `id` int NOT NULL DEFAULT '0',
  `tr_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`,`tr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dbk_translations`
--

LOCK TABLES `dbk_translations` WRITE;
/*!40000 ALTER TABLE `dbk_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `dbk_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `desktop_item`
--

DROP TABLE IF EXISTS `desktop_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `desktop_item` (
  `user_id` int NOT NULL DEFAULT '0',
  `item_id` int NOT NULL DEFAULT '0',
  `type` varchar(4) DEFAULT NULL,
  `parameters` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`user_id`,`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `desktop_item`
--

LOCK TABLES `desktop_item` WRITE;
/*!40000 ALTER TABLE `desktop_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `desktop_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `didactic_tpl_a`
--

DROP TABLE IF EXISTS `didactic_tpl_a`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `didactic_tpl_a` (
  `id` int NOT NULL DEFAULT '0',
  `tpl_id` int NOT NULL DEFAULT '0',
  `type_id` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `didactic_tpl_a`
--

LOCK TABLES `didactic_tpl_a` WRITE;
/*!40000 ALTER TABLE `didactic_tpl_a` DISABLE KEYS */;
INSERT INTO `didactic_tpl_a` VALUES (1,1,1),(2,2,1);
/*!40000 ALTER TABLE `didactic_tpl_a` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `didactic_tpl_a_seq`
--

DROP TABLE IF EXISTS `didactic_tpl_a_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `didactic_tpl_a_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `didactic_tpl_a_seq`
--

LOCK TABLES `didactic_tpl_a_seq` WRITE;
/*!40000 ALTER TABLE `didactic_tpl_a_seq` DISABLE KEYS */;
INSERT INTO `didactic_tpl_a_seq` VALUES (2);
/*!40000 ALTER TABLE `didactic_tpl_a_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `didactic_tpl_abr`
--

DROP TABLE IF EXISTS `didactic_tpl_abr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `didactic_tpl_abr` (
  `action_id` int NOT NULL DEFAULT '0',
  `filter_type` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`action_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `didactic_tpl_abr`
--

LOCK TABLES `didactic_tpl_abr` WRITE;
/*!40000 ALTER TABLE `didactic_tpl_abr` DISABLE KEYS */;
/*!40000 ALTER TABLE `didactic_tpl_abr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `didactic_tpl_alp`
--

DROP TABLE IF EXISTS `didactic_tpl_alp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `didactic_tpl_alp` (
  `action_id` int NOT NULL DEFAULT '0',
  `filter_type` tinyint NOT NULL DEFAULT '0',
  `template_type` tinyint NOT NULL DEFAULT '0',
  `template_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`action_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `didactic_tpl_alp`
--

LOCK TABLES `didactic_tpl_alp` WRITE;
/*!40000 ALTER TABLE `didactic_tpl_alp` DISABLE KEYS */;
INSERT INTO `didactic_tpl_alp` VALUES (1,3,2,82),(2,3,2,269);
/*!40000 ALTER TABLE `didactic_tpl_alp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `didactic_tpl_alr`
--

DROP TABLE IF EXISTS `didactic_tpl_alr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `didactic_tpl_alr` (
  `action_id` int NOT NULL DEFAULT '0',
  `role_template_id` int DEFAULT NULL,
  PRIMARY KEY (`action_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `didactic_tpl_alr`
--

LOCK TABLES `didactic_tpl_alr` WRITE;
/*!40000 ALTER TABLE `didactic_tpl_alr` DISABLE KEYS */;
/*!40000 ALTER TABLE `didactic_tpl_alr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `didactic_tpl_en`
--

DROP TABLE IF EXISTS `didactic_tpl_en`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `didactic_tpl_en` (
  `id` int NOT NULL DEFAULT '0',
  `node` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`,`node`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `didactic_tpl_en`
--

LOCK TABLES `didactic_tpl_en` WRITE;
/*!40000 ALTER TABLE `didactic_tpl_en` DISABLE KEYS */;
/*!40000 ALTER TABLE `didactic_tpl_en` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `didactic_tpl_fp`
--

DROP TABLE IF EXISTS `didactic_tpl_fp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `didactic_tpl_fp` (
  `pattern_id` int NOT NULL DEFAULT '0',
  `pattern_type` tinyint NOT NULL DEFAULT '0',
  `pattern_sub_type` tinyint NOT NULL DEFAULT '0',
  `pattern` varchar(64) DEFAULT NULL,
  `parent_id` int NOT NULL DEFAULT '0',
  `parent_type` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`pattern_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `didactic_tpl_fp`
--

LOCK TABLES `didactic_tpl_fp` WRITE;
/*!40000 ALTER TABLE `didactic_tpl_fp` DISABLE KEYS */;
INSERT INTO `didactic_tpl_fp` VALUES (1,1,1,'.*',1,'action'),(2,1,1,'.*',2,'action');
/*!40000 ALTER TABLE `didactic_tpl_fp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `didactic_tpl_fp_seq`
--

DROP TABLE IF EXISTS `didactic_tpl_fp_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `didactic_tpl_fp_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `didactic_tpl_fp_seq`
--

LOCK TABLES `didactic_tpl_fp_seq` WRITE;
/*!40000 ALTER TABLE `didactic_tpl_fp_seq` DISABLE KEYS */;
INSERT INTO `didactic_tpl_fp_seq` VALUES (2);
/*!40000 ALTER TABLE `didactic_tpl_fp_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `didactic_tpl_objs`
--

DROP TABLE IF EXISTS `didactic_tpl_objs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `didactic_tpl_objs` (
  `obj_id` int NOT NULL DEFAULT '0',
  `tpl_id` int NOT NULL DEFAULT '0',
  `ref_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`ref_id`,`tpl_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `didactic_tpl_objs`
--

LOCK TABLES `didactic_tpl_objs` WRITE;
/*!40000 ALTER TABLE `didactic_tpl_objs` DISABLE KEYS */;
/*!40000 ALTER TABLE `didactic_tpl_objs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `didactic_tpl_sa`
--

DROP TABLE IF EXISTS `didactic_tpl_sa`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `didactic_tpl_sa` (
  `id` int NOT NULL DEFAULT '0',
  `obj_type` varchar(8) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`,`obj_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `didactic_tpl_sa`
--

LOCK TABLES `didactic_tpl_sa` WRITE;
/*!40000 ALTER TABLE `didactic_tpl_sa` DISABLE KEYS */;
INSERT INTO `didactic_tpl_sa` VALUES (1,'grp'),(2,'sess');
/*!40000 ALTER TABLE `didactic_tpl_sa` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `didactic_tpl_settings`
--

DROP TABLE IF EXISTS `didactic_tpl_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `didactic_tpl_settings` (
  `id` int NOT NULL DEFAULT '0',
  `enabled` tinyint NOT NULL DEFAULT '0',
  `type` tinyint NOT NULL DEFAULT '0',
  `title` varchar(64) DEFAULT NULL,
  `description` varchar(512) DEFAULT NULL,
  `info` varchar(4000) DEFAULT NULL,
  `auto_generated` tinyint NOT NULL DEFAULT '0',
  `exclusive_tpl` tinyint NOT NULL DEFAULT '0',
  `icon_ide` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `didactic_tpl_settings`
--

LOCK TABLES `didactic_tpl_settings` WRITE;
/*!40000 ALTER TABLE `didactic_tpl_settings` DISABLE KEYS */;
INSERT INTO `didactic_tpl_settings` VALUES (1,1,1,'grp_closed','grp_closed_info','',1,0,NULL),(2,1,1,'sess_closed','sess_closed_info','',1,0,NULL);
/*!40000 ALTER TABLE `didactic_tpl_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `didactic_tpl_settings_seq`
--

DROP TABLE IF EXISTS `didactic_tpl_settings_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `didactic_tpl_settings_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `didactic_tpl_settings_seq`
--

LOCK TABLES `didactic_tpl_settings_seq` WRITE;
/*!40000 ALTER TABLE `didactic_tpl_settings_seq` DISABLE KEYS */;
INSERT INTO `didactic_tpl_settings_seq` VALUES (2);
/*!40000 ALTER TABLE `didactic_tpl_settings_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_cmap_rule`
--

DROP TABLE IF EXISTS `ecs_cmap_rule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_cmap_rule` (
  `rid` int NOT NULL DEFAULT '0',
  `sid` int NOT NULL DEFAULT '0',
  `mid` int NOT NULL DEFAULT '0',
  `attribute` varchar(64) DEFAULT NULL,
  `ref_id` int NOT NULL DEFAULT '0',
  `is_filter` tinyint NOT NULL DEFAULT '0',
  `filter` varchar(512) DEFAULT NULL,
  `create_subdir` tinyint NOT NULL DEFAULT '0',
  `subdir_type` tinyint NOT NULL DEFAULT '0',
  `directory` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_cmap_rule`
--

LOCK TABLES `ecs_cmap_rule` WRITE;
/*!40000 ALTER TABLE `ecs_cmap_rule` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_cmap_rule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_cmap_rule_seq`
--

DROP TABLE IF EXISTS `ecs_cmap_rule_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_cmap_rule_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_cmap_rule_seq`
--

LOCK TABLES `ecs_cmap_rule_seq` WRITE;
/*!40000 ALTER TABLE `ecs_cmap_rule_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_cmap_rule_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_cms_data`
--

DROP TABLE IF EXISTS `ecs_cms_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_cms_data` (
  `obj_id` int NOT NULL DEFAULT '0',
  `server_id` int DEFAULT NULL,
  `mid` int DEFAULT NULL,
  `tree_id` int DEFAULT NULL,
  `title` varchar(512) DEFAULT NULL,
  `term` varchar(255) DEFAULT NULL,
  `status` smallint NOT NULL DEFAULT '1',
  `deleted` tinyint NOT NULL DEFAULT '0',
  `cms_id` varchar(512) DEFAULT NULL,
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_cms_data`
--

LOCK TABLES `ecs_cms_data` WRITE;
/*!40000 ALTER TABLE `ecs_cms_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_cms_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_cms_data_seq`
--

DROP TABLE IF EXISTS `ecs_cms_data_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_cms_data_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_cms_data_seq`
--

LOCK TABLES `ecs_cms_data_seq` WRITE;
/*!40000 ALTER TABLE `ecs_cms_data_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_cms_data_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_cms_tree`
--

DROP TABLE IF EXISTS `ecs_cms_tree`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_cms_tree` (
  `tree` int NOT NULL DEFAULT '0',
  `child` int NOT NULL DEFAULT '0',
  `parent` int DEFAULT NULL,
  `lft` int DEFAULT NULL,
  `rgt` int DEFAULT NULL,
  `depth` int DEFAULT NULL,
  PRIMARY KEY (`tree`,`child`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_cms_tree`
--

LOCK TABLES `ecs_cms_tree` WRITE;
/*!40000 ALTER TABLE `ecs_cms_tree` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_cms_tree` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_community`
--

DROP TABLE IF EXISTS `ecs_community`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_community` (
  `sid` int NOT NULL DEFAULT '0',
  `cid` int NOT NULL DEFAULT '0',
  `own_id` int NOT NULL DEFAULT '0',
  `cname` varchar(255) DEFAULT NULL,
  `mids` varchar(512) DEFAULT NULL,
  PRIMARY KEY (`sid`,`cid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_community`
--

LOCK TABLES `ecs_community` WRITE;
/*!40000 ALTER TABLE `ecs_community` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_community` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_container_mapping`
--

DROP TABLE IF EXISTS `ecs_container_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_container_mapping` (
  `mapping_id` int NOT NULL DEFAULT '0',
  `container_id` int NOT NULL DEFAULT '0',
  `field_name` varchar(255) DEFAULT NULL,
  `mapping_type` tinyint NOT NULL DEFAULT '0',
  `mapping_value` varchar(255) DEFAULT NULL,
  `date_range_start` int NOT NULL DEFAULT '0',
  `date_range_end` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`mapping_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_container_mapping`
--

LOCK TABLES `ecs_container_mapping` WRITE;
/*!40000 ALTER TABLE `ecs_container_mapping` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_container_mapping` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_container_mapping_seq`
--

DROP TABLE IF EXISTS `ecs_container_mapping_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_container_mapping_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_container_mapping_seq`
--

LOCK TABLES `ecs_container_mapping_seq` WRITE;
/*!40000 ALTER TABLE `ecs_container_mapping_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_container_mapping_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_course_assignments`
--

DROP TABLE IF EXISTS `ecs_course_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_course_assignments` (
  `id` int NOT NULL DEFAULT '0',
  `sid` int NOT NULL DEFAULT '0',
  `mid` int NOT NULL DEFAULT '0',
  `cms_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `usr_id` varchar(64) DEFAULT NULL,
  `status` tinyint NOT NULL DEFAULT '0',
  `cms_sub_id` int DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_course_assignments`
--

LOCK TABLES `ecs_course_assignments` WRITE;
/*!40000 ALTER TABLE `ecs_course_assignments` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_course_assignments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_course_assignments_seq`
--

DROP TABLE IF EXISTS `ecs_course_assignments_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_course_assignments_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_course_assignments_seq`
--

LOCK TABLES `ecs_course_assignments_seq` WRITE;
/*!40000 ALTER TABLE `ecs_course_assignments_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_course_assignments_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_crs_mapping_atts`
--

DROP TABLE IF EXISTS `ecs_crs_mapping_atts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_crs_mapping_atts` (
  `id` int NOT NULL DEFAULT '0',
  `sid` int NOT NULL DEFAULT '0',
  `mid` int NOT NULL DEFAULT '0',
  `name` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_crs_mapping_atts`
--

LOCK TABLES `ecs_crs_mapping_atts` WRITE;
/*!40000 ALTER TABLE `ecs_crs_mapping_atts` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_crs_mapping_atts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_crs_mapping_atts_seq`
--

DROP TABLE IF EXISTS `ecs_crs_mapping_atts_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_crs_mapping_atts_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_crs_mapping_atts_seq`
--

LOCK TABLES `ecs_crs_mapping_atts_seq` WRITE;
/*!40000 ALTER TABLE `ecs_crs_mapping_atts_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_crs_mapping_atts_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_data_mapping`
--

DROP TABLE IF EXISTS `ecs_data_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_data_mapping` (
  `sid` int NOT NULL DEFAULT '0',
  `mapping_type` tinyint NOT NULL DEFAULT '0',
  `ecs_field` varchar(32) NOT NULL DEFAULT '',
  `advmd_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`sid`,`mapping_type`,`ecs_field`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_data_mapping`
--

LOCK TABLES `ecs_data_mapping` WRITE;
/*!40000 ALTER TABLE `ecs_data_mapping` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_data_mapping` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_events`
--

DROP TABLE IF EXISTS `ecs_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_events` (
  `event_id` int NOT NULL DEFAULT '0',
  `type` char(32) DEFAULT NULL,
  `id` int NOT NULL DEFAULT '0',
  `op` char(32) DEFAULT NULL,
  `server_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_events`
--

LOCK TABLES `ecs_events` WRITE;
/*!40000 ALTER TABLE `ecs_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_events_seq`
--

DROP TABLE IF EXISTS `ecs_events_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_events_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_events_seq`
--

LOCK TABLES `ecs_events_seq` WRITE;
/*!40000 ALTER TABLE `ecs_events_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_events_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_export`
--

DROP TABLE IF EXISTS `ecs_export`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_export` (
  `obj_id` int NOT NULL DEFAULT '0',
  `econtent_id` int NOT NULL DEFAULT '0',
  `server_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`server_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_export`
--

LOCK TABLES `ecs_export` WRITE;
/*!40000 ALTER TABLE `ecs_export` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_export` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_import`
--

DROP TABLE IF EXISTS `ecs_import`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_import` (
  `obj_id` int NOT NULL DEFAULT '0',
  `mid` int NOT NULL DEFAULT '0',
  `server_id` int NOT NULL DEFAULT '0',
  `sub_id` varchar(64) DEFAULT NULL,
  `ecs_id` int DEFAULT '0',
  `content_id` varchar(255) DEFAULT NULL,
  `econtent_id` varchar(512) DEFAULT NULL,
  PRIMARY KEY (`server_id`,`obj_id`),
  KEY `i1_idx` (`obj_id`),
  KEY `i2_idx` (`sub_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_import`
--

LOCK TABLES `ecs_import` WRITE;
/*!40000 ALTER TABLE `ecs_import` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_import` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_node_mapping_a`
--

DROP TABLE IF EXISTS `ecs_node_mapping_a`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_node_mapping_a` (
  `server_id` int NOT NULL DEFAULT '0',
  `mid` int NOT NULL DEFAULT '0',
  `cs_root` int NOT NULL DEFAULT '0',
  `cs_id` int NOT NULL DEFAULT '0',
  `ref_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `title_update` tinyint DEFAULT NULL,
  `position_update` tinyint DEFAULT NULL,
  `tree_update` tinyint DEFAULT NULL,
  PRIMARY KEY (`server_id`,`mid`,`cs_root`,`cs_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_node_mapping_a`
--

LOCK TABLES `ecs_node_mapping_a` WRITE;
/*!40000 ALTER TABLE `ecs_node_mapping_a` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_node_mapping_a` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_part_settings`
--

DROP TABLE IF EXISTS `ecs_part_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_part_settings` (
  `sid` int NOT NULL DEFAULT '0',
  `mid` int NOT NULL DEFAULT '0',
  `export` tinyint NOT NULL DEFAULT '0',
  `import` tinyint NOT NULL DEFAULT '0',
  `import_type` tinyint DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `cname` varchar(255) DEFAULT NULL,
  `token` tinyint DEFAULT '1',
  `export_types` varchar(4000) DEFAULT NULL,
  `import_types` varchar(4000) DEFAULT NULL,
  `dtoken` tinyint NOT NULL DEFAULT '1',
  `username_placeholders` varchar(500) DEFAULT NULL,
  `incoming_auth_type` varchar(1) NOT NULL DEFAULT '0',
  `incoming_local_accounts` tinyint NOT NULL DEFAULT '1',
  `outgoing_auth_modes` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`sid`,`mid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_part_settings`
--

LOCK TABLES `ecs_part_settings` WRITE;
/*!40000 ALTER TABLE `ecs_part_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_part_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_remote_user`
--

DROP TABLE IF EXISTS `ecs_remote_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_remote_user` (
  `eru_id` int NOT NULL DEFAULT '0',
  `sid` int NOT NULL DEFAULT '0',
  `mid` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `remote_usr_id` char(50) DEFAULT NULL,
  PRIMARY KEY (`eru_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_remote_user`
--

LOCK TABLES `ecs_remote_user` WRITE;
/*!40000 ALTER TABLE `ecs_remote_user` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_remote_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_remote_user_seq`
--

DROP TABLE IF EXISTS `ecs_remote_user_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_remote_user_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_remote_user_seq`
--

LOCK TABLES `ecs_remote_user_seq` WRITE;
/*!40000 ALTER TABLE `ecs_remote_user_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_remote_user_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_server`
--

DROP TABLE IF EXISTS `ecs_server`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_server` (
  `server_id` int NOT NULL DEFAULT '0',
  `active` tinyint DEFAULT '0',
  `protocol` tinyint DEFAULT '1',
  `server` varchar(255) DEFAULT NULL,
  `port` smallint DEFAULT '1',
  `auth_type` tinyint DEFAULT '1',
  `client_cert_path` varchar(512) DEFAULT NULL,
  `ca_cert_path` varchar(512) DEFAULT NULL,
  `key_path` varchar(512) DEFAULT NULL,
  `key_password` varchar(32) DEFAULT NULL,
  `cert_serial` varchar(32) DEFAULT NULL,
  `import_id` int DEFAULT '0',
  `global_role` int DEFAULT '0',
  `econtent_rcp` varchar(512) DEFAULT NULL,
  `user_rcp` varchar(512) DEFAULT NULL,
  `approval_rcp` varchar(512) DEFAULT NULL,
  `duration` int DEFAULT '0',
  `title` varchar(128) DEFAULT NULL,
  `auth_user` varchar(32) DEFAULT NULL,
  `auth_pass` varchar(128) DEFAULT NULL,
  PRIMARY KEY (`server_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_server`
--

LOCK TABLES `ecs_server` WRITE;
/*!40000 ALTER TABLE `ecs_server` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_server` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_server_seq`
--

DROP TABLE IF EXISTS `ecs_server_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_server_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_server_seq`
--

LOCK TABLES `ecs_server_seq` WRITE;
/*!40000 ALTER TABLE `ecs_server_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_server_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ecs_user_consent`
--

DROP TABLE IF EXISTS `ecs_user_consent`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ecs_user_consent` (
  `usr_id` int NOT NULL,
  `mid` int NOT NULL,
  `server_id` int NOT NULL,
  PRIMARY KEY (`usr_id`,`mid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ecs_user_consent`
--

LOCK TABLES `ecs_user_consent` WRITE;
/*!40000 ALTER TABLE `ecs_user_consent` DISABLE KEYS */;
/*!40000 ALTER TABLE `ecs_user_consent` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `etal_data`
--

DROP TABLE IF EXISTS `etal_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `etal_data` (
  `object_id` bigint NOT NULL,
  `series_id` char(36) NOT NULL,
  `start_date` bigint NOT NULL,
  `end_date` bigint NOT NULL,
  `all_day` tinyint NOT NULL,
  `employee` bigint NOT NULL,
  `location` varchar(200) DEFAULT NULL,
  `completed` tinyint NOT NULL,
  `standalone_date` tinyint NOT NULL DEFAULT '0',
  `template_id` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`),
  KEY `ser_idx` (`series_id`),
  KEY `emp_idx` (`employee`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `etal_data`
--

LOCK TABLES `etal_data` WRITE;
/*!40000 ALTER TABLE `etal_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `etal_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `etal_serie`
--

DROP TABLE IF EXISTS `etal_serie`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `etal_serie` (
  `id` bigint NOT NULL,
  `editing_locked` tinyint NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `etal_serie`
--

LOCK TABLES `etal_serie` WRITE;
/*!40000 ALTER TABLE `etal_serie` DISABLE KEYS */;
/*!40000 ALTER TABLE `etal_serie` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event`
--

DROP TABLE IF EXISTS `event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `event` (
  `event_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `title` varchar(70) DEFAULT NULL,
  `description` varchar(4000) DEFAULT NULL,
  `location` varchar(4000) DEFAULT NULL,
  `tutor_name` varchar(4000) DEFAULT NULL,
  `tutor_email` varchar(127) DEFAULT NULL,
  `tutor_phone` varchar(127) DEFAULT NULL,
  `details` varchar(4000) DEFAULT NULL,
  `registration` tinyint NOT NULL DEFAULT '0',
  `participation` tinyint NOT NULL DEFAULT '0',
  `reg_type` smallint DEFAULT '0',
  `reg_limit_users` int DEFAULT '0',
  `reg_waiting_list` tinyint DEFAULT '0',
  `reg_limited` tinyint DEFAULT '0',
  `reg_min_users` smallint DEFAULT NULL,
  `reg_auto_wait` tinyint NOT NULL DEFAULT '0',
  `show_members` tinyint NOT NULL DEFAULT '0',
  `mail_members` tinyint NOT NULL DEFAULT '0',
  `reg_notification` int NOT NULL DEFAULT '0',
  `notification_opt` varchar(50) DEFAULT 'notification_option_manual',
  `show_cannot_part` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`event_id`),
  KEY `i1_idx` (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event`
--

LOCK TABLES `event` WRITE;
/*!40000 ALTER TABLE `event` DISABLE KEYS */;
/*!40000 ALTER TABLE `event` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_appointment`
--

DROP TABLE IF EXISTS `event_appointment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `event_appointment` (
  `appointment_id` int NOT NULL DEFAULT '0',
  `event_id` int NOT NULL DEFAULT '0',
  `e_start` datetime DEFAULT NULL,
  `e_end` datetime DEFAULT NULL,
  `starting_time` int NOT NULL DEFAULT '0',
  `ending_time` int NOT NULL DEFAULT '0',
  `fulltime` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`appointment_id`),
  KEY `i1_idx` (`event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_appointment`
--

LOCK TABLES `event_appointment` WRITE;
/*!40000 ALTER TABLE `event_appointment` DISABLE KEYS */;
/*!40000 ALTER TABLE `event_appointment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_appointment_seq`
--

DROP TABLE IF EXISTS `event_appointment_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `event_appointment_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_appointment_seq`
--

LOCK TABLES `event_appointment_seq` WRITE;
/*!40000 ALTER TABLE `event_appointment_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `event_appointment_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_items`
--

DROP TABLE IF EXISTS `event_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `event_items` (
  `event_id` int NOT NULL DEFAULT '0',
  `item_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`event_id`,`item_id`),
  KEY `i1_idx` (`event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_items`
--

LOCK TABLES `event_items` WRITE;
/*!40000 ALTER TABLE `event_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `event_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_participants`
--

DROP TABLE IF EXISTS `event_participants`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `event_participants` (
  `event_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `registered` tinyint NOT NULL DEFAULT '0',
  `participated` tinyint NOT NULL DEFAULT '0',
  `mark` longtext,
  `e_comment` longtext,
  `contact` tinyint NOT NULL DEFAULT '0',
  `notification_enabled` int NOT NULL DEFAULT '0',
  `excused` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`event_id`,`usr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_participants`
--

LOCK TABLES `event_participants` WRITE;
/*!40000 ALTER TABLE `event_participants` DISABLE KEYS */;
/*!40000 ALTER TABLE `event_participants` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_seq`
--

DROP TABLE IF EXISTS `event_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `event_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_seq`
--

LOCK TABLES `event_seq` WRITE;
/*!40000 ALTER TABLE `event_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `event_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_ass_file_order`
--

DROP TABLE IF EXISTS `exc_ass_file_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_ass_file_order` (
  `id` int NOT NULL DEFAULT '0',
  `assignment_id` int NOT NULL DEFAULT '0',
  `filename` varchar(150) NOT NULL,
  `order_nr` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`assignment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_ass_file_order`
--

LOCK TABLES `exc_ass_file_order` WRITE;
/*!40000 ALTER TABLE `exc_ass_file_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_ass_file_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_ass_file_order_seq`
--

DROP TABLE IF EXISTS `exc_ass_file_order_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_ass_file_order_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_ass_file_order_seq`
--

LOCK TABLES `exc_ass_file_order_seq` WRITE;
/*!40000 ALTER TABLE `exc_ass_file_order_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_ass_file_order_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_ass_reminders`
--

DROP TABLE IF EXISTS `exc_ass_reminders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_ass_reminders` (
  `type` varchar(32) NOT NULL,
  `ass_id` int NOT NULL,
  `exc_id` int NOT NULL,
  `status` tinyint DEFAULT NULL,
  `start` int DEFAULT NULL,
  `end` int DEFAULT NULL,
  `freq` int DEFAULT NULL,
  `last_send` int DEFAULT NULL,
  `template_id` int DEFAULT NULL,
  `last_send_day` date DEFAULT NULL,
  PRIMARY KEY (`ass_id`,`exc_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_ass_reminders`
--

LOCK TABLES `exc_ass_reminders` WRITE;
/*!40000 ALTER TABLE `exc_ass_reminders` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_ass_reminders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_ass_wiki_team`
--

DROP TABLE IF EXISTS `exc_ass_wiki_team`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_ass_wiki_team` (
  `id` int NOT NULL DEFAULT '0',
  `container_ref_id` int NOT NULL DEFAULT '0',
  `template_ref_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_ass_wiki_team`
--

LOCK TABLES `exc_ass_wiki_team` WRITE;
/*!40000 ALTER TABLE `exc_ass_wiki_team` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_ass_wiki_team` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_assignment`
--

DROP TABLE IF EXISTS `exc_assignment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_assignment` (
  `id` int NOT NULL DEFAULT '0',
  `exc_id` int NOT NULL DEFAULT '0',
  `time_stamp` int DEFAULT NULL,
  `instruction` longtext,
  `title` varchar(200) DEFAULT NULL,
  `start_time` int DEFAULT NULL,
  `mandatory` tinyint DEFAULT '1',
  `order_nr` int NOT NULL DEFAULT '0',
  `type` tinyint NOT NULL DEFAULT '1',
  `peer` tinyint NOT NULL DEFAULT '0',
  `peer_min` smallint NOT NULL DEFAULT '0',
  `fb_file` varchar(1000) DEFAULT NULL,
  `fb_cron` tinyint NOT NULL DEFAULT '0',
  `fb_cron_done` tinyint NOT NULL DEFAULT '0',
  `peer_dl` int DEFAULT '0',
  `peer_file` tinyint DEFAULT '0',
  `peer_prsl` tinyint DEFAULT '0',
  `fb_date` tinyint NOT NULL DEFAULT '1',
  `peer_char` smallint DEFAULT NULL,
  `peer_unlock` tinyint NOT NULL DEFAULT '0',
  `peer_valid` tinyint NOT NULL DEFAULT '1',
  `team_tutor` tinyint NOT NULL DEFAULT '0',
  `max_file` tinyint DEFAULT NULL,
  `deadline2` int DEFAULT NULL,
  `peer_text` tinyint NOT NULL DEFAULT '1',
  `peer_rating` tinyint NOT NULL DEFAULT '1',
  `peer_crit_cat` int DEFAULT NULL,
  `portfolio_template` int DEFAULT NULL,
  `min_char_limit` int DEFAULT NULL,
  `max_char_limit` int DEFAULT NULL,
  `fb_date_custom` int DEFAULT NULL,
  `rmd_submit_status` tinyint DEFAULT NULL,
  `rmd_submit_start` int DEFAULT NULL,
  `rmd_submit_end` int DEFAULT NULL,
  `rmd_submit_freq` int DEFAULT NULL,
  `rmd_grade_status` tinyint DEFAULT NULL,
  `rmd_grade_start` int DEFAULT NULL,
  `rmd_grade_end` int DEFAULT NULL,
  `rmd_grade_freq` int DEFAULT NULL,
  `peer_rmd_status` tinyint DEFAULT NULL,
  `peer_rmd_start` int DEFAULT NULL,
  `peer_rmd_end` int DEFAULT NULL,
  `peer_rmd_freq` int DEFAULT NULL,
  `deadline_mode` tinyint DEFAULT '0',
  `relative_deadline` int DEFAULT '0',
  `rel_deadline_last_subm` int NOT NULL DEFAULT '0',
  `if_rcid` varchar(64) DEFAULT NULL,
  `solution_rid` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`exc_id`),
  KEY `i2_idx` (`deadline_mode`,`exc_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_assignment`
--

LOCK TABLES `exc_assignment` WRITE;
/*!40000 ALTER TABLE `exc_assignment` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_assignment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_assignment_peer`
--

DROP TABLE IF EXISTS `exc_assignment_peer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_assignment_peer` (
  `ass_id` int NOT NULL DEFAULT '0',
  `giver_id` int NOT NULL DEFAULT '0',
  `peer_id` int NOT NULL DEFAULT '0',
  `tstamp` datetime DEFAULT NULL,
  `pcomment` longtext,
  `is_valid` tinyint NOT NULL DEFAULT '0',
  `id` int NOT NULL DEFAULT '0',
  `migrated` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `c1_idx` (`ass_id`,`giver_id`,`peer_id`),
  KEY `i1_idx` (`ass_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_assignment_peer`
--

LOCK TABLES `exc_assignment_peer` WRITE;
/*!40000 ALTER TABLE `exc_assignment_peer` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_assignment_peer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_assignment_peer_seq`
--

DROP TABLE IF EXISTS `exc_assignment_peer_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_assignment_peer_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_assignment_peer_seq`
--

LOCK TABLES `exc_assignment_peer_seq` WRITE;
/*!40000 ALTER TABLE `exc_assignment_peer_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_assignment_peer_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_assignment_seq`
--

DROP TABLE IF EXISTS `exc_assignment_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_assignment_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_assignment_seq`
--

LOCK TABLES `exc_assignment_seq` WRITE;
/*!40000 ALTER TABLE `exc_assignment_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_assignment_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_crit`
--

DROP TABLE IF EXISTS `exc_crit`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_crit` (
  `id` int NOT NULL DEFAULT '0',
  `parent` int NOT NULL DEFAULT '0',
  `type` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `descr` varchar(1000) DEFAULT NULL,
  `pos` int NOT NULL DEFAULT '0',
  `required` tinyint NOT NULL DEFAULT '0',
  `def` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_crit`
--

LOCK TABLES `exc_crit` WRITE;
/*!40000 ALTER TABLE `exc_crit` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_crit` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_crit_cat`
--

DROP TABLE IF EXISTS `exc_crit_cat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_crit_cat` (
  `id` int NOT NULL DEFAULT '0',
  `parent` int NOT NULL DEFAULT '0',
  `title` varchar(255) DEFAULT NULL,
  `pos` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_crit_cat`
--

LOCK TABLES `exc_crit_cat` WRITE;
/*!40000 ALTER TABLE `exc_crit_cat` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_crit_cat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_crit_cat_seq`
--

DROP TABLE IF EXISTS `exc_crit_cat_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_crit_cat_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_crit_cat_seq`
--

LOCK TABLES `exc_crit_cat_seq` WRITE;
/*!40000 ALTER TABLE `exc_crit_cat_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_crit_cat_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_crit_file`
--

DROP TABLE IF EXISTS `exc_crit_file`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_crit_file` (
  `ass_id` int NOT NULL DEFAULT '0',
  `giver_id` int NOT NULL DEFAULT '0',
  `peer_id` int NOT NULL DEFAULT '0',
  `criteria_id` int NOT NULL DEFAULT '0',
  `rid` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`ass_id`,`giver_id`,`peer_id`,`criteria_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_crit_file`
--

LOCK TABLES `exc_crit_file` WRITE;
/*!40000 ALTER TABLE `exc_crit_file` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_crit_file` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_crit_seq`
--

DROP TABLE IF EXISTS `exc_crit_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_crit_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_crit_seq`
--

LOCK TABLES `exc_crit_seq` WRITE;
/*!40000 ALTER TABLE `exc_crit_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_crit_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_data`
--

DROP TABLE IF EXISTS `exc_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_data` (
  `obj_id` int NOT NULL DEFAULT '0',
  `instruction` longtext,
  `time_stamp` int DEFAULT NULL,
  `pass_mode` varchar(8) NOT NULL DEFAULT 'all',
  `pass_nr` int DEFAULT NULL,
  `show_submissions` tinyint NOT NULL DEFAULT '0',
  `compl_by_submission` tinyint NOT NULL DEFAULT '0',
  `certificate_visibility` tinyint NOT NULL DEFAULT '0',
  `tfeedback` tinyint NOT NULL DEFAULT '7',
  `nr_mandatory_random` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_data`
--

LOCK TABLES `exc_data` WRITE;
/*!40000 ALTER TABLE `exc_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_idl`
--

DROP TABLE IF EXISTS `exc_idl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_idl` (
  `ass_id` int NOT NULL DEFAULT '0',
  `member_id` int NOT NULL DEFAULT '0',
  `is_team` tinyint NOT NULL DEFAULT '0',
  `tstamp` int DEFAULT '0',
  `starting_ts` int DEFAULT '0',
  `requested` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`ass_id`,`member_id`,`is_team`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_idl`
--

LOCK TABLES `exc_idl` WRITE;
/*!40000 ALTER TABLE `exc_idl` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_idl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_mandatory_random`
--

DROP TABLE IF EXISTS `exc_mandatory_random`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_mandatory_random` (
  `exc_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `ass_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`exc_id`,`usr_id`,`ass_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_mandatory_random`
--

LOCK TABLES `exc_mandatory_random` WRITE;
/*!40000 ALTER TABLE `exc_mandatory_random` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_mandatory_random` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_mem_ass_status`
--

DROP TABLE IF EXISTS `exc_mem_ass_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_mem_ass_status` (
  `ass_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `notice` varchar(4000) DEFAULT NULL,
  `returned` tinyint NOT NULL DEFAULT '0',
  `solved` tinyint DEFAULT NULL,
  `status_time` datetime DEFAULT NULL,
  `sent` tinyint DEFAULT NULL,
  `sent_time` datetime DEFAULT NULL,
  `feedback_time` datetime DEFAULT NULL,
  `feedback` tinyint NOT NULL DEFAULT '0',
  `status` char(9) DEFAULT 'notgraded',
  `mark` varchar(32) DEFAULT NULL,
  `u_comment` varchar(4000) DEFAULT NULL,
  `feedback_rcid` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`ass_id`,`usr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_mem_ass_status`
--

LOCK TABLES `exc_mem_ass_status` WRITE;
/*!40000 ALTER TABLE `exc_mem_ass_status` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_mem_ass_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_members`
--

DROP TABLE IF EXISTS `exc_members`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_members` (
  `obj_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `notice` varchar(4000) DEFAULT NULL,
  `returned` tinyint NOT NULL DEFAULT '0',
  `solved` tinyint DEFAULT NULL,
  `status_time` datetime DEFAULT NULL,
  `sent` tinyint DEFAULT NULL,
  `sent_time` datetime DEFAULT NULL,
  `feedback_time` datetime DEFAULT NULL,
  `feedback` tinyint NOT NULL DEFAULT '0',
  `status` char(9) DEFAULT 'notgraded',
  PRIMARY KEY (`obj_id`,`usr_id`),
  KEY `ob_idx` (`obj_id`),
  KEY `i1_idx` (`usr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_members`
--

LOCK TABLES `exc_members` WRITE;
/*!40000 ALTER TABLE `exc_members` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_members` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_multi_feedback`
--

DROP TABLE IF EXISTS `exc_multi_feedback`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_multi_feedback` (
  `tutor_id` int NOT NULL,
  `ass_id` int NOT NULL,
  `zip_rid` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`tutor_id`,`ass_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_multi_feedback`
--

LOCK TABLES `exc_multi_feedback` WRITE;
/*!40000 ALTER TABLE `exc_multi_feedback` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_multi_feedback` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_returned`
--

DROP TABLE IF EXISTS `exc_returned`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_returned` (
  `returned_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `filename` varchar(1000) DEFAULT NULL,
  `filetitle` varchar(1000) DEFAULT NULL,
  `mimetype` varchar(150) DEFAULT NULL,
  `ts` datetime DEFAULT NULL,
  `ass_id` int DEFAULT NULL,
  `atext` longtext,
  `late` tinyint NOT NULL DEFAULT '0',
  `team_id` int NOT NULL DEFAULT '0',
  `web_dir_access_time` datetime DEFAULT NULL,
  `rid` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`returned_id`),
  KEY `i1_idx` (`obj_id`),
  KEY `i2_idx` (`user_id`),
  KEY `i3_idx` (`filetitle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_returned`
--

LOCK TABLES `exc_returned` WRITE;
/*!40000 ALTER TABLE `exc_returned` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_returned` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_returned_seq`
--

DROP TABLE IF EXISTS `exc_returned_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_returned_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_returned_seq`
--

LOCK TABLES `exc_returned_seq` WRITE;
/*!40000 ALTER TABLE `exc_returned_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_returned_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_team_data`
--

DROP TABLE IF EXISTS `exc_team_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_team_data` (
  `id` int NOT NULL,
  `feedback_rcid` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_team_data`
--

LOCK TABLES `exc_team_data` WRITE;
/*!40000 ALTER TABLE `exc_team_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_team_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `exc_usr_tutor`
--

DROP TABLE IF EXISTS `exc_usr_tutor`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `exc_usr_tutor` (
  `obj_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `tutor_id` int NOT NULL DEFAULT '0',
  `download_time` datetime DEFAULT NULL,
  `ass_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`ass_id`,`usr_id`,`tutor_id`),
  KEY `ob_idx` (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `exc_usr_tutor`
--

LOCK TABLES `exc_usr_tutor` WRITE;
/*!40000 ALTER TABLE `exc_usr_tutor` DISABLE KEYS */;
/*!40000 ALTER TABLE `exc_usr_tutor` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `export_file_info`
--

DROP TABLE IF EXISTS `export_file_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `export_file_info` (
  `obj_id` int NOT NULL DEFAULT '0',
  `export_type` varchar(32) NOT NULL DEFAULT '',
  `file_name` varchar(64) NOT NULL DEFAULT '',
  `version` varchar(16) DEFAULT NULL,
  `create_date` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  `filename` varchar(64) NOT NULL DEFAULT '',
  `migrated` int DEFAULT '0',
  PRIMARY KEY (`obj_id`,`export_type`,`filename`),
  KEY `i1_idx` (`create_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `export_file_info`
--

LOCK TABLES `export_file_info` WRITE;
/*!40000 ALTER TABLE `export_file_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `export_file_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `export_files`
--

DROP TABLE IF EXISTS `export_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `export_files` (
  `object_id` bigint NOT NULL DEFAULT '0',
  `rid` varchar(64) NOT NULL DEFAULT '',
  `owner_id` bigint NOT NULL DEFAULT '0',
  `timestamp` datetime DEFAULT NULL,
  PRIMARY KEY (`object_id`,`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `export_files`
--

LOCK TABLES `export_files` WRITE;
/*!40000 ALTER TABLE `export_files` DISABLE KEYS */;
/*!40000 ALTER TABLE `export_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `export_files_html`
--

DROP TABLE IF EXISTS `export_files_html`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `export_files_html` (
  `object_id` bigint NOT NULL DEFAULT '0',
  `rid` varchar(64) NOT NULL DEFAULT '',
  `timestamp` datetime DEFAULT NULL,
  `type` varchar(40) NOT NULL DEFAULT '',
  PRIMARY KEY (`object_id`,`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `export_files_html`
--

LOCK TABLES `export_files_html` WRITE;
/*!40000 ALTER TABLE `export_files_html` DISABLE KEYS */;
/*!40000 ALTER TABLE `export_files_html` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `export_options`
--

DROP TABLE IF EXISTS `export_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `export_options` (
  `export_id` smallint NOT NULL DEFAULT '0',
  `keyword` smallint NOT NULL DEFAULT '0',
  `ref_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `value` varchar(32) DEFAULT NULL,
  `pos` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`export_id`,`keyword`,`ref_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `export_options`
--

LOCK TABLES `export_options` WRITE;
/*!40000 ALTER TABLE `export_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `export_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `export_public_access`
--

DROP TABLE IF EXISTS `export_public_access`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `export_public_access` (
  `object_id` bigint NOT NULL DEFAULT '0',
  `export_option_id` varchar(64) NOT NULL DEFAULT '',
  `identification` varchar(64) NOT NULL DEFAULT '',
  `timestamp` datetime DEFAULT NULL,
  PRIMARY KEY (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `export_public_access`
--

LOCK TABLES `export_public_access` WRITE;
/*!40000 ALTER TABLE `export_public_access` DISABLE KEYS */;
/*!40000 ALTER TABLE `export_public_access` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `feedback_items_seq`
--

DROP TABLE IF EXISTS `feedback_items_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `feedback_items_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `feedback_items_seq`
--

LOCK TABLES `feedback_items_seq` WRITE;
/*!40000 ALTER TABLE `feedback_items_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `feedback_items_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `file_based_lm`
--

DROP TABLE IF EXISTS `file_based_lm`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_based_lm` (
  `id` int NOT NULL DEFAULT '0',
  `is_online` char(1) DEFAULT 'n',
  `startfile` varchar(200) DEFAULT NULL,
  `show_lic` tinyint DEFAULT NULL,
  `show_bib` tinyint DEFAULT NULL,
  `rid` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_based_lm`
--

LOCK TABLES `file_based_lm` WRITE;
/*!40000 ALTER TABLE `file_based_lm` DISABLE KEYS */;
/*!40000 ALTER TABLE `file_based_lm` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `file_data`
--

DROP TABLE IF EXISTS `file_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_data` (
  `file_id` int NOT NULL DEFAULT '0',
  `file_name` char(250) DEFAULT NULL,
  `file_type` char(250) DEFAULT NULL,
  `file_size` int NOT NULL DEFAULT '0',
  `version` int DEFAULT NULL,
  `f_mode` char(8) DEFAULT 'object',
  `rating` tinyint NOT NULL DEFAULT '0',
  `page_count` bigint DEFAULT NULL,
  `max_version` int DEFAULT NULL,
  `rid` varchar(64) NOT NULL DEFAULT '',
  `on_click_mode` tinyint NOT NULL DEFAULT '1',
  `downloads` bigint DEFAULT '0',
  `important_info` longblob,
  PRIMARY KEY (`file_id`),
  KEY `i1_idx` (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_data`
--

LOCK TABLES `file_data` WRITE;
/*!40000 ALTER TABLE `file_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `file_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `file_usage`
--

DROP TABLE IF EXISTS `file_usage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `file_usage` (
  `id` int NOT NULL DEFAULT '0',
  `usage_type` varchar(10) NOT NULL DEFAULT ' ',
  `usage_id` int NOT NULL DEFAULT '0',
  `usage_hist_nr` int NOT NULL DEFAULT '0',
  `usage_lang` varchar(2) NOT NULL DEFAULT '-',
  PRIMARY KEY (`id`,`usage_type`,`usage_id`,`usage_hist_nr`,`usage_lang`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `file_usage`
--

LOCK TABLES `file_usage` WRITE;
/*!40000 ALTER TABLE `file_usage` DISABLE KEYS */;
/*!40000 ALTER TABLE `file_usage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_data`
--

DROP TABLE IF EXISTS `frm_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_data` (
  `top_pk` bigint NOT NULL DEFAULT '0',
  `top_frm_fk` bigint NOT NULL DEFAULT '0',
  `top_name` varchar(255) DEFAULT NULL,
  `top_description` varchar(255) DEFAULT NULL,
  `top_num_posts` int NOT NULL DEFAULT '0',
  `top_num_threads` int NOT NULL DEFAULT '0',
  `top_last_post` varchar(50) DEFAULT NULL,
  `top_mods` int NOT NULL DEFAULT '0',
  `top_date` datetime DEFAULT NULL,
  `visits` int NOT NULL DEFAULT '0',
  `top_update` datetime DEFAULT NULL,
  `update_user` int NOT NULL DEFAULT '0',
  `top_usr_id` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`top_pk`),
  KEY `i1_idx` (`top_frm_fk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_data`
--

LOCK TABLES `frm_data` WRITE;
/*!40000 ALTER TABLE `frm_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_data_seq`
--

DROP TABLE IF EXISTS `frm_data_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_data_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_data_seq`
--

LOCK TABLES `frm_data_seq` WRITE;
/*!40000 ALTER TABLE `frm_data_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_data_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_drafts_history`
--

DROP TABLE IF EXISTS `frm_drafts_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_drafts_history` (
  `history_id` int NOT NULL DEFAULT '0',
  `draft_id` int NOT NULL DEFAULT '0',
  `post_subject` varchar(4000) NOT NULL DEFAULT '',
  `post_message` longtext NOT NULL,
  `draft_date` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  PRIMARY KEY (`history_id`),
  KEY `i1_idx` (`draft_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_drafts_history`
--

LOCK TABLES `frm_drafts_history` WRITE;
/*!40000 ALTER TABLE `frm_drafts_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_drafts_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_drafts_history_seq`
--

DROP TABLE IF EXISTS `frm_drafts_history_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_drafts_history_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_drafts_history_seq`
--

LOCK TABLES `frm_drafts_history_seq` WRITE;
/*!40000 ALTER TABLE `frm_drafts_history_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_drafts_history_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_notification`
--

DROP TABLE IF EXISTS `frm_notification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_notification` (
  `notification_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `frm_id` bigint NOT NULL DEFAULT '0',
  `thread_id` bigint NOT NULL DEFAULT '0',
  `admin_force_noti` tinyint NOT NULL DEFAULT '0',
  `user_toggle_noti` tinyint NOT NULL DEFAULT '0',
  `user_id_noti` int DEFAULT NULL,
  `interested_events` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`notification_id`),
  KEY `i1_idx` (`user_id`,`thread_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_notification`
--

LOCK TABLES `frm_notification` WRITE;
/*!40000 ALTER TABLE `frm_notification` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_notification` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_notification_seq`
--

DROP TABLE IF EXISTS `frm_notification_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_notification_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_notification_seq`
--

LOCK TABLES `frm_notification_seq` WRITE;
/*!40000 ALTER TABLE `frm_notification_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_notification_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_posts`
--

DROP TABLE IF EXISTS `frm_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_posts` (
  `pos_pk` bigint NOT NULL DEFAULT '0',
  `pos_top_fk` bigint NOT NULL DEFAULT '0',
  `pos_thr_fk` bigint NOT NULL DEFAULT '0',
  `pos_usr_alias` varchar(255) DEFAULT NULL,
  `pos_subject` varchar(4000) DEFAULT NULL,
  `pos_date` datetime DEFAULT NULL,
  `pos_update` datetime DEFAULT NULL,
  `update_user` int NOT NULL DEFAULT '0',
  `pos_cens` tinyint NOT NULL DEFAULT '0',
  `pos_cens_com` varchar(4000) DEFAULT NULL,
  `notify` tinyint NOT NULL DEFAULT '0',
  `import_name` varchar(4000) DEFAULT NULL,
  `pos_status` tinyint NOT NULL DEFAULT '1',
  `pos_message` longtext,
  `pos_author_id` int NOT NULL DEFAULT '0',
  `pos_display_user_id` int NOT NULL DEFAULT '0',
  `is_author_moderator` tinyint DEFAULT NULL,
  `pos_cens_date` datetime DEFAULT NULL,
  `pos_activation_date` datetime DEFAULT NULL,
  `rcid` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`pos_pk`),
  KEY `i1_idx` (`pos_thr_fk`),
  KEY `i2_idx` (`pos_top_fk`),
  KEY `i3_idx` (`pos_date`),
  KEY `i5_idx` (`pos_thr_fk`,`pos_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_posts`
--

LOCK TABLES `frm_posts` WRITE;
/*!40000 ALTER TABLE `frm_posts` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_posts_deleted`
--

DROP TABLE IF EXISTS `frm_posts_deleted`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_posts_deleted` (
  `deleted_id` int NOT NULL DEFAULT '0',
  `deleted_date` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  `deleted_by` varchar(255) NOT NULL DEFAULT '',
  `forum_title` varchar(255) NOT NULL DEFAULT '',
  `thread_title` varchar(255) NOT NULL DEFAULT '',
  `post_title` varchar(255) NOT NULL DEFAULT '',
  `post_message` longtext NOT NULL,
  `post_date` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  `obj_id` int NOT NULL DEFAULT '0',
  `ref_id` int NOT NULL DEFAULT '0',
  `thread_id` int NOT NULL DEFAULT '0',
  `forum_id` int NOT NULL DEFAULT '0',
  `pos_display_user_id` int NOT NULL DEFAULT '0',
  `pos_usr_alias` varchar(255) DEFAULT NULL,
  `is_thread_deleted` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`deleted_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_posts_deleted`
--

LOCK TABLES `frm_posts_deleted` WRITE;
/*!40000 ALTER TABLE `frm_posts_deleted` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_posts_deleted` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_posts_deleted_seq`
--

DROP TABLE IF EXISTS `frm_posts_deleted_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_posts_deleted_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_posts_deleted_seq`
--

LOCK TABLES `frm_posts_deleted_seq` WRITE;
/*!40000 ALTER TABLE `frm_posts_deleted_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_posts_deleted_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_posts_drafts`
--

DROP TABLE IF EXISTS `frm_posts_drafts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_posts_drafts` (
  `draft_id` int NOT NULL DEFAULT '0',
  `post_id` bigint NOT NULL DEFAULT '0',
  `thread_id` bigint NOT NULL DEFAULT '0',
  `forum_id` bigint NOT NULL DEFAULT '0',
  `post_author_id` int NOT NULL DEFAULT '0',
  `post_subject` varchar(4000) NOT NULL DEFAULT '',
  `post_message` longtext NOT NULL,
  `post_notify` tinyint NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  `post_update` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  `update_user_id` int NOT NULL DEFAULT '0',
  `post_user_alias` varchar(255) DEFAULT NULL,
  `pos_display_usr_id` int NOT NULL DEFAULT '0',
  `notify` tinyint NOT NULL DEFAULT '0',
  `rcid` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`draft_id`),
  KEY `i1_idx` (`post_id`),
  KEY `i2_idx` (`thread_id`),
  KEY `i3_idx` (`forum_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_posts_drafts`
--

LOCK TABLES `frm_posts_drafts` WRITE;
/*!40000 ALTER TABLE `frm_posts_drafts` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_posts_drafts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_posts_drafts_seq`
--

DROP TABLE IF EXISTS `frm_posts_drafts_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_posts_drafts_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_posts_drafts_seq`
--

LOCK TABLES `frm_posts_drafts_seq` WRITE;
/*!40000 ALTER TABLE `frm_posts_drafts_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_posts_drafts_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_posts_seq`
--

DROP TABLE IF EXISTS `frm_posts_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_posts_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_posts_seq`
--

LOCK TABLES `frm_posts_seq` WRITE;
/*!40000 ALTER TABLE `frm_posts_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_posts_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_posts_tree`
--

DROP TABLE IF EXISTS `frm_posts_tree`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_posts_tree` (
  `fpt_pk` bigint NOT NULL DEFAULT '0',
  `thr_fk` bigint NOT NULL DEFAULT '0',
  `pos_fk` bigint NOT NULL DEFAULT '0',
  `parent_pos` bigint NOT NULL DEFAULT '0',
  `lft` int NOT NULL DEFAULT '0',
  `rgt` int NOT NULL DEFAULT '0',
  `depth` int NOT NULL DEFAULT '0',
  `fpt_date` datetime DEFAULT NULL,
  PRIMARY KEY (`fpt_pk`),
  KEY `i1_idx` (`thr_fk`),
  KEY `i2_idx` (`pos_fk`),
  KEY `i3_idx` (`parent_pos`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_posts_tree`
--

LOCK TABLES `frm_posts_tree` WRITE;
/*!40000 ALTER TABLE `frm_posts_tree` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_posts_tree` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_posts_tree_seq`
--

DROP TABLE IF EXISTS `frm_posts_tree_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_posts_tree_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_posts_tree_seq`
--

LOCK TABLES `frm_posts_tree_seq` WRITE;
/*!40000 ALTER TABLE `frm_posts_tree_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_posts_tree_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_settings`
--

DROP TABLE IF EXISTS `frm_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_settings` (
  `obj_id` int NOT NULL DEFAULT '0',
  `default_view` int NOT NULL DEFAULT '0',
  `anonymized` tinyint NOT NULL DEFAULT '0',
  `statistics_enabled` tinyint NOT NULL DEFAULT '0',
  `post_activation` tinyint NOT NULL DEFAULT '0',
  `admin_force_noti` tinyint NOT NULL DEFAULT '0',
  `user_toggle_noti` tinyint NOT NULL DEFAULT '0',
  `preset_subject` tinyint NOT NULL DEFAULT '1',
  `notification_type` varchar(10) DEFAULT NULL,
  `add_re_subject` tinyint NOT NULL DEFAULT '0',
  `mark_mod_posts` tinyint NOT NULL DEFAULT '0',
  `thread_rating` tinyint NOT NULL DEFAULT '0',
  `file_upload_allowed` tinyint NOT NULL DEFAULT '0',
  `interested_events` tinyint NOT NULL DEFAULT '0',
  `lp_req_num_postings` int DEFAULT NULL,
  `stylesheet` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_settings`
--

LOCK TABLES `frm_settings` WRITE;
/*!40000 ALTER TABLE `frm_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_threads`
--

DROP TABLE IF EXISTS `frm_threads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_threads` (
  `thr_pk` bigint NOT NULL DEFAULT '0',
  `thr_top_fk` bigint NOT NULL DEFAULT '0',
  `thr_subject` varchar(255) DEFAULT NULL,
  `thr_usr_alias` varchar(255) DEFAULT NULL,
  `thr_num_posts` int NOT NULL DEFAULT '0',
  `thr_last_post` varchar(50) DEFAULT NULL,
  `thr_date` datetime DEFAULT NULL,
  `thr_update` datetime DEFAULT NULL,
  `visits` int NOT NULL DEFAULT '0',
  `import_name` varchar(4000) DEFAULT NULL,
  `is_sticky` tinyint NOT NULL DEFAULT '0',
  `is_closed` tinyint NOT NULL DEFAULT '0',
  `avg_rating` double NOT NULL DEFAULT '0',
  `thr_author_id` int NOT NULL DEFAULT '0',
  `thr_display_user_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`thr_pk`),
  KEY `i2_idx` (`thr_top_fk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_threads`
--

LOCK TABLES `frm_threads` WRITE;
/*!40000 ALTER TABLE `frm_threads` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_threads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_threads_seq`
--

DROP TABLE IF EXISTS `frm_threads_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_threads_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_threads_seq`
--

LOCK TABLES `frm_threads_seq` WRITE;
/*!40000 ALTER TABLE `frm_threads_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_threads_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `frm_user_read`
--

DROP TABLE IF EXISTS `frm_user_read`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `frm_user_read` (
  `usr_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `thread_id` int NOT NULL DEFAULT '0',
  `post_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`usr_id`,`obj_id`,`thread_id`,`post_id`),
  KEY `i1_idx` (`usr_id`,`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `frm_user_read`
--

LOCK TABLES `frm_user_read` WRITE;
/*!40000 ALTER TABLE `frm_user_read` DISABLE KEYS */;
/*!40000 ALTER TABLE `frm_user_read` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glo_advmd_col_order`
--

DROP TABLE IF EXISTS `glo_advmd_col_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `glo_advmd_col_order` (
  `glo_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0',
  `order_nr` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`glo_id`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glo_advmd_col_order`
--

LOCK TABLES `glo_advmd_col_order` WRITE;
/*!40000 ALTER TABLE `glo_advmd_col_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `glo_advmd_col_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glo_flashcard_box`
--

DROP TABLE IF EXISTS `glo_flashcard_box`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `glo_flashcard_box` (
  `box_nr` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `glo_id` int NOT NULL DEFAULT '0',
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`box_nr`,`user_id`,`glo_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glo_flashcard_box`
--

LOCK TABLES `glo_flashcard_box` WRITE;
/*!40000 ALTER TABLE `glo_flashcard_box` DISABLE KEYS */;
/*!40000 ALTER TABLE `glo_flashcard_box` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glo_flashcard_term`
--

DROP TABLE IF EXISTS `glo_flashcard_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `glo_flashcard_term` (
  `term_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `glo_id` int NOT NULL DEFAULT '0',
  `last_access` datetime DEFAULT NULL,
  `box_nr` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`,`user_id`,`glo_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glo_flashcard_term`
--

LOCK TABLES `glo_flashcard_term` WRITE;
/*!40000 ALTER TABLE `glo_flashcard_term` DISABLE KEYS */;
/*!40000 ALTER TABLE `glo_flashcard_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glo_glossaries`
--

DROP TABLE IF EXISTS `glo_glossaries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `glo_glossaries` (
  `id` int NOT NULL DEFAULT '0',
  `glo_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`,`glo_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glo_glossaries`
--

LOCK TABLES `glo_glossaries` WRITE;
/*!40000 ALTER TABLE `glo_glossaries` DISABLE KEYS */;
/*!40000 ALTER TABLE `glo_glossaries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glo_term_reference`
--

DROP TABLE IF EXISTS `glo_term_reference`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `glo_term_reference` (
  `glo_id` int NOT NULL DEFAULT '0',
  `term_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`glo_id`,`term_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glo_term_reference`
--

LOCK TABLES `glo_term_reference` WRITE;
/*!40000 ALTER TABLE `glo_term_reference` DISABLE KEYS */;
/*!40000 ALTER TABLE `glo_term_reference` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glossary`
--

DROP TABLE IF EXISTS `glossary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `glossary` (
  `id` int NOT NULL DEFAULT '0',
  `is_online` char(1) DEFAULT 'n',
  `virtual` char(7) DEFAULT 'none',
  `public_html_file` varchar(50) DEFAULT NULL,
  `public_xml_file` varchar(50) DEFAULT NULL,
  `glo_menu_active` char(1) DEFAULT 'y',
  `downloads_active` char(1) DEFAULT 'n',
  `pres_mode` varchar(10) NOT NULL DEFAULT 'table',
  `snippet_length` int NOT NULL DEFAULT '200',
  `show_tax` tinyint NOT NULL DEFAULT '0',
  `flash_active` varchar(1) NOT NULL DEFAULT 'n',
  `flash_mode` varchar(10) NOT NULL DEFAULT 'term',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glossary`
--

LOCK TABLES `glossary` WRITE;
/*!40000 ALTER TABLE `glossary` DISABLE KEYS */;
/*!40000 ALTER TABLE `glossary` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glossary_collection`
--

DROP TABLE IF EXISTS `glossary_collection`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `glossary_collection` (
  `id` int NOT NULL DEFAULT '0',
  `glo_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`,`glo_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glossary_collection`
--

LOCK TABLES `glossary_collection` WRITE;
/*!40000 ALTER TABLE `glossary_collection` DISABLE KEYS */;
/*!40000 ALTER TABLE `glossary_collection` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glossary_definition`
--

DROP TABLE IF EXISTS `glossary_definition`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `glossary_definition` (
  `id` int NOT NULL DEFAULT '0',
  `term_id` int NOT NULL DEFAULT '0',
  `short_text` varchar(4000) DEFAULT NULL,
  `nr` int NOT NULL DEFAULT '0',
  `short_text_dirty` int NOT NULL DEFAULT '0',
  `migration` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glossary_definition`
--

LOCK TABLES `glossary_definition` WRITE;
/*!40000 ALTER TABLE `glossary_definition` DISABLE KEYS */;
/*!40000 ALTER TABLE `glossary_definition` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glossary_definition_seq`
--

DROP TABLE IF EXISTS `glossary_definition_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `glossary_definition_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glossary_definition_seq`
--

LOCK TABLES `glossary_definition_seq` WRITE;
/*!40000 ALTER TABLE `glossary_definition_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `glossary_definition_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glossary_term`
--

DROP TABLE IF EXISTS `glossary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `glossary_term` (
  `id` int NOT NULL DEFAULT '0',
  `glo_id` int NOT NULL DEFAULT '0',
  `term` varchar(200) DEFAULT NULL,
  `language` char(2) DEFAULT NULL,
  `import_id` varchar(50) DEFAULT NULL,
  `create_date` datetime DEFAULT NULL,
  `last_update` datetime DEFAULT NULL,
  `short_text` varchar(4000) DEFAULT NULL,
  `short_text_dirty` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`glo_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glossary_term`
--

LOCK TABLES `glossary_term` WRITE;
/*!40000 ALTER TABLE `glossary_term` DISABLE KEYS */;
/*!40000 ALTER TABLE `glossary_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glossary_term_seq`
--

DROP TABLE IF EXISTS `glossary_term_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `glossary_term_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glossary_term_seq`
--

LOCK TABLES `glossary_term_seq` WRITE;
/*!40000 ALTER TABLE `glossary_term_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `glossary_term_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `grp_settings`
--

DROP TABLE IF EXISTS `grp_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `grp_settings` (
  `obj_id` int NOT NULL DEFAULT '0',
  `information` varchar(4000) DEFAULT NULL,
  `grp_type` tinyint NOT NULL DEFAULT '0',
  `registration_type` tinyint NOT NULL DEFAULT '0',
  `registration_enabled` tinyint NOT NULL DEFAULT '0',
  `registration_unlimited` tinyint NOT NULL DEFAULT '0',
  `registration_start` datetime DEFAULT NULL,
  `registration_end` datetime DEFAULT NULL,
  `registration_password` char(32) DEFAULT NULL,
  `registration_mem_limit` tinyint NOT NULL DEFAULT '0',
  `registration_max_members` int NOT NULL DEFAULT '0',
  `waiting_list` tinyint NOT NULL DEFAULT '0',
  `latitude` varchar(30) DEFAULT NULL,
  `longitude` varchar(30) DEFAULT NULL,
  `location_zoom` int NOT NULL DEFAULT '0',
  `enablemap` tinyint NOT NULL DEFAULT '0',
  `reg_ac_enabled` tinyint NOT NULL DEFAULT '0',
  `reg_ac` varchar(32) DEFAULT NULL,
  `view_mode` tinyint NOT NULL DEFAULT '6',
  `mail_members_type` tinyint DEFAULT '1',
  `registration_min_members` smallint DEFAULT NULL,
  `leave_end` int DEFAULT NULL,
  `auto_wait` tinyint NOT NULL DEFAULT '0',
  `show_members` tinyint NOT NULL DEFAULT '1',
  `grp_start` int DEFAULT NULL,
  `grp_end` int DEFAULT NULL,
  `period_start` datetime DEFAULT NULL,
  `period_end` datetime DEFAULT NULL,
  `period_time_indication` int NOT NULL DEFAULT '0',
  `auto_notification` int NOT NULL DEFAULT '1',
  `session_limit` tinyint NOT NULL DEFAULT '0',
  `session_prev` bigint NOT NULL DEFAULT '-1',
  `session_next` bigint NOT NULL DEFAULT '-1',
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `grp_settings`
--

LOCK TABLES `grp_settings` WRITE;
/*!40000 ALTER TABLE `grp_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `grp_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `gs_footer_items`
--

DROP TABLE IF EXISTS `gs_footer_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `gs_footer_items` (
  `id` varchar(255) NOT NULL,
  `type` tinyint NOT NULL,
  `title` varchar(4000) NOT NULL,
  `position` int NOT NULL,
  `is_active` tinyint NOT NULL,
  `parent` varchar(255) DEFAULT NULL,
  `action` varchar(4000) DEFAULT NULL,
  `external` tinyint DEFAULT NULL,
  `core` tinyint NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gs_footer_items`
--

LOCK TABLES `gs_footer_items` WRITE;
/*!40000 ALTER TABLE `gs_footer_items` DISABLE KEYS */;
INSERT INTO `gs_footer_items` VALUES ('ilAccessibilitySupportFooterProvider|accessibility',1,'Accessibility',10,1,NULL,NULL,NULL,1),('ilAccessibilitySupportFooterProvider|accessibility_control',2,'Accessibility',0,1,'ilAccessibilitySupportFooterProvider|accessibility','ilias.php?baseClass=ilaccessibilitycontrolconceptgui',0,1),('ilFooterStandardGroupsProvider|imprint',2,'Legal Notice',0,1,'ilFooterStandardGroupsProvider|legal_information','http://10.ilias.localhost/go/impr/0',0,1),('ilFooterStandardGroupsProvider|legal_information',1,'Legal Information',20,1,NULL,NULL,NULL,1),('ilFooterStandardGroupsProvider|services',1,'Services',40,1,NULL,NULL,NULL,1),('ilFooterStandardGroupsProvider|support',1,'Support',30,1,NULL,NULL,NULL,1);
/*!40000 ALTER TABLE `gs_footer_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `gs_item_translation`
--

DROP TABLE IF EXISTS `gs_item_translation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `gs_item_translation` (
  `id` varchar(255) NOT NULL,
  `language_code` varchar(4) NOT NULL,
  `translation` varchar(4000) NOT NULL,
  `status` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`,`language_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gs_item_translation`
--

LOCK TABLES `gs_item_translation` WRITE;
/*!40000 ALTER TABLE `gs_item_translation` DISABLE KEYS */;
/*!40000 ALTER TABLE `gs_item_translation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `help_map`
--

DROP TABLE IF EXISTS `help_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `help_map` (
  `chap` int NOT NULL DEFAULT '0',
  `component` varchar(10) NOT NULL DEFAULT '',
  `screen_id` varchar(100) NOT NULL DEFAULT '',
  `screen_sub_id` varchar(100) NOT NULL DEFAULT '',
  `perm` varchar(20) NOT NULL DEFAULT '',
  `module_id` int NOT NULL DEFAULT '0',
  `full_id` varchar(1000) DEFAULT NULL,
  KEY `sc_idx` (`screen_id`),
  KEY `ch_idx` (`chap`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `help_map`
--

LOCK TABLES `help_map` WRITE;
/*!40000 ALTER TABLE `help_map` DISABLE KEYS */;
/*!40000 ALTER TABLE `help_map` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `help_module`
--

DROP TABLE IF EXISTS `help_module`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `help_module` (
  `id` int NOT NULL DEFAULT '0',
  `lm_id` int NOT NULL DEFAULT '0',
  `order_nr` int NOT NULL DEFAULT '0',
  `active` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `help_module`
--

LOCK TABLES `help_module` WRITE;
/*!40000 ALTER TABLE `help_module` DISABLE KEYS */;
/*!40000 ALTER TABLE `help_module` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `help_module_seq`
--

DROP TABLE IF EXISTS `help_module_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `help_module_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `help_module_seq`
--

LOCK TABLES `help_module_seq` WRITE;
/*!40000 ALTER TABLE `help_module_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `help_module_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `help_tooltip`
--

DROP TABLE IF EXISTS `help_tooltip`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `help_tooltip` (
  `id` int NOT NULL DEFAULT '0',
  `tt_text` varchar(4000) DEFAULT NULL,
  `tt_id` varchar(200) NOT NULL DEFAULT '',
  `comp` varchar(10) NOT NULL DEFAULT '',
  `lang` char(2) NOT NULL DEFAULT 'de',
  `module_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`tt_id`,`module_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `help_tooltip`
--

LOCK TABLES `help_tooltip` WRITE;
/*!40000 ALTER TABLE `help_tooltip` DISABLE KEYS */;
/*!40000 ALTER TABLE `help_tooltip` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `help_tooltip_seq`
--

DROP TABLE IF EXISTS `help_tooltip_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `help_tooltip_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `help_tooltip_seq`
--

LOCK TABLES `help_tooltip_seq` WRITE;
/*!40000 ALTER TABLE `help_tooltip_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `help_tooltip_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `history`
--

DROP TABLE IF EXISTS `history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `history` (
  `id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `obj_type` varchar(8) DEFAULT NULL,
  `action` varchar(20) DEFAULT NULL,
  `hdate` datetime DEFAULT NULL,
  `usr_id` int NOT NULL DEFAULT '0',
  `info_params` varchar(4000) DEFAULT NULL,
  `user_comment` longtext,
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`obj_id`,`obj_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `history`
--

LOCK TABLES `history` WRITE;
/*!40000 ALTER TABLE `history` DISABLE KEYS */;
/*!40000 ALTER TABLE `history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `history_seq`
--

DROP TABLE IF EXISTS `history_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `history_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `history_seq`
--

LOCK TABLES `history_seq` WRITE;
/*!40000 ALTER TABLE `history_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `history_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `iass_info_settings`
--

DROP TABLE IF EXISTS `iass_info_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `iass_info_settings` (
  `obj_id` int NOT NULL DEFAULT '0',
  `contact` varchar(100) DEFAULT NULL,
  `responsibility` varchar(100) DEFAULT NULL,
  `phone` varchar(100) DEFAULT NULL,
  `mails` text,
  `consultation_hours` varchar(500) DEFAULT NULL,
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `iass_info_settings`
--

LOCK TABLES `iass_info_settings` WRITE;
/*!40000 ALTER TABLE `iass_info_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `iass_info_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `iass_members`
--

DROP TABLE IF EXISTS `iass_members`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `iass_members` (
  `obj_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `examiner_id` int DEFAULT NULL,
  `record` text,
  `internal_note` text,
  `notify` tinyint NOT NULL DEFAULT '0',
  `notification_ts` int NOT NULL DEFAULT '-1',
  `learning_progress` tinyint DEFAULT '0',
  `finalized` tinyint NOT NULL DEFAULT '0',
  `place` varchar(255) DEFAULT NULL,
  `event_time` bigint DEFAULT NULL,
  `file_name` varchar(255) DEFAULT NULL,
  `user_view_file` tinyint DEFAULT NULL,
  `changer_id` int DEFAULT NULL,
  `change_time` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`obj_id`,`usr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `iass_members`
--

LOCK TABLES `iass_members` WRITE;
/*!40000 ALTER TABLE `iass_members` DISABLE KEYS */;
/*!40000 ALTER TABLE `iass_members` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `iass_settings`
--

DROP TABLE IF EXISTS `iass_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `iass_settings` (
  `obj_id` int NOT NULL DEFAULT '0',
  `content` text,
  `record_template` text,
  `event_time_place_required` tinyint NOT NULL DEFAULT '0',
  `file_required` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `iass_settings`
--

LOCK TABLES `iass_settings` WRITE;
/*!40000 ALTER TABLE `iass_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `iass_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_adn_dismiss`
--

DROP TABLE IF EXISTS `il_adn_dismiss`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_adn_dismiss` (
  `id` bigint NOT NULL,
  `usr_id` bigint DEFAULT NULL,
  `notification_id` bigint DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_adn_dismiss`
--

LOCK TABLES `il_adn_dismiss` WRITE;
/*!40000 ALTER TABLE `il_adn_dismiss` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_adn_dismiss` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_adn_dismiss_seq`
--

DROP TABLE IF EXISTS `il_adn_dismiss_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_adn_dismiss_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_adn_dismiss_seq`
--

LOCK TABLES `il_adn_dismiss_seq` WRITE;
/*!40000 ALTER TABLE `il_adn_dismiss_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_adn_dismiss_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_adn_notifications`
--

DROP TABLE IF EXISTS `il_adn_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_adn_notifications` (
  `id` bigint NOT NULL,
  `title` varchar(256) DEFAULT NULL,
  `body` longtext,
  `type` tinyint DEFAULT NULL,
  `type_during_event` tinyint DEFAULT NULL,
  `dismissable` tinyint DEFAULT NULL,
  `permanent` tinyint DEFAULT NULL,
  `allowed_users` varchar(256) DEFAULT NULL,
  `parent_id` bigint DEFAULT NULL,
  `created_by` bigint DEFAULT NULL,
  `last_update_by` bigint DEFAULT NULL,
  `active` tinyint DEFAULT NULL,
  `limited_to_role_ids` varchar(256) DEFAULT NULL,
  `limit_to_roles` tinyint DEFAULT NULL,
  `interruptive` tinyint DEFAULT NULL,
  `link` varchar(256) DEFAULT NULL,
  `link_type` tinyint DEFAULT NULL,
  `link_target` varchar(256) DEFAULT NULL,
  `event_start` bigint DEFAULT '0',
  `event_end` bigint DEFAULT '0',
  `display_start` bigint DEFAULT '0',
  `display_end` bigint DEFAULT '0',
  `create_date` bigint DEFAULT '0',
  `last_update` bigint DEFAULT '0',
  `has_language_limitation` tinyint NOT NULL DEFAULT '0',
  `limited_to_languages` varchar(256) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_adn_notifications`
--

LOCK TABLES `il_adn_notifications` WRITE;
/*!40000 ALTER TABLE `il_adn_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_adn_notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_adn_notifications_seq`
--

DROP TABLE IF EXISTS `il_adn_notifications_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_adn_notifications_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_adn_notifications_seq`
--

LOCK TABLES `il_adn_notifications_seq` WRITE;
/*!40000 ALTER TABLE `il_adn_notifications_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_adn_notifications_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_attribute`
--

DROP TABLE IF EXISTS `il_bibl_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_attribute` (
  `entry_id` int DEFAULT NULL,
  `name` varchar(32) DEFAULT NULL,
  `value` varchar(4000) DEFAULT NULL,
  `id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_attribute`
--

LOCK TABLES `il_bibl_attribute` WRITE;
/*!40000 ALTER TABLE `il_bibl_attribute` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bibl_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_attribute_seq`
--

DROP TABLE IF EXISTS `il_bibl_attribute_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_attribute_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_attribute_seq`
--

LOCK TABLES `il_bibl_attribute_seq` WRITE;
/*!40000 ALTER TABLE `il_bibl_attribute_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bibl_attribute_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_data`
--

DROP TABLE IF EXISTS `il_bibl_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_data` (
  `id` int NOT NULL DEFAULT '0',
  `filename` varchar(256) DEFAULT NULL,
  `file_type` tinyint NOT NULL DEFAULT '1',
  `rid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_data`
--

LOCK TABLES `il_bibl_data` WRITE;
/*!40000 ALTER TABLE `il_bibl_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bibl_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_entry`
--

DROP TABLE IF EXISTS `il_bibl_entry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_entry` (
  `data_id` int DEFAULT NULL,
  `id` int NOT NULL DEFAULT '0',
  `type` varchar(128) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_entry`
--

LOCK TABLES `il_bibl_entry` WRITE;
/*!40000 ALTER TABLE `il_bibl_entry` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bibl_entry` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_entry_seq`
--

DROP TABLE IF EXISTS `il_bibl_entry_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_entry_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_entry_seq`
--

LOCK TABLES `il_bibl_entry_seq` WRITE;
/*!40000 ALTER TABLE `il_bibl_entry_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bibl_entry_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_field`
--

DROP TABLE IF EXISTS `il_bibl_field`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_field` (
  `id` int NOT NULL,
  `identifier` varchar(50) NOT NULL,
  `data_type` tinyint NOT NULL,
  `position` int DEFAULT NULL,
  `is_standard_field` tinyint NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_field`
--

LOCK TABLES `il_bibl_field` WRITE;
/*!40000 ALTER TABLE `il_bibl_field` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bibl_field` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_field_seq`
--

DROP TABLE IF EXISTS `il_bibl_field_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_field_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_field_seq`
--

LOCK TABLES `il_bibl_field_seq` WRITE;
/*!40000 ALTER TABLE `il_bibl_field_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bibl_field_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_filter`
--

DROP TABLE IF EXISTS `il_bibl_filter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_filter` (
  `id` int NOT NULL,
  `field_id` int NOT NULL,
  `object_id` int NOT NULL,
  `filter_type` tinyint DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_filter`
--

LOCK TABLES `il_bibl_filter` WRITE;
/*!40000 ALTER TABLE `il_bibl_filter` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bibl_filter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_filter_seq`
--

DROP TABLE IF EXISTS `il_bibl_filter_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_filter_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_filter_seq`
--

LOCK TABLES `il_bibl_filter_seq` WRITE;
/*!40000 ALTER TABLE `il_bibl_filter_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bibl_filter_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_overview_model`
--

DROP TABLE IF EXISTS `il_bibl_overview_model`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_overview_model` (
  `ovm_id` int NOT NULL DEFAULT '0',
  `literature_type` varchar(32) DEFAULT NULL,
  `pattern` varchar(512) DEFAULT NULL,
  `file_type_id` int DEFAULT NULL,
  PRIMARY KEY (`ovm_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_overview_model`
--

LOCK TABLES `il_bibl_overview_model` WRITE;
/*!40000 ALTER TABLE `il_bibl_overview_model` DISABLE KEYS */;
INSERT INTO `il_bibl_overview_model` VALUES (1,'default','[<strong>|bib_default_author|</strong> ][|bib_default_title|]: <Emph>[|bib_default_publisher| ][|bib_default_year| ][|bib_default_address|]</Emph>',2),(2,'default','[<strong>|ris_default_a1|</strong> ][<strong>|ris_default_au|</strong> ][|ris_default_t1|][ |ris_default_ti|]: <Emph>[|ris_default_pb| ][|ris_default_y1| ][|ris_default_py| ][|ris_default_cy|]</Emph>',1);
/*!40000 ALTER TABLE `il_bibl_overview_model` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_settings`
--

DROP TABLE IF EXISTS `il_bibl_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_settings` (
  `id` int NOT NULL DEFAULT '0',
  `name` varchar(50) NOT NULL DEFAULT '-',
  `url` varchar(128) NOT NULL DEFAULT '-',
  `img` varchar(128) DEFAULT NULL,
  `show_in_list` tinyint DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_settings`
--

LOCK TABLES `il_bibl_settings` WRITE;
/*!40000 ALTER TABLE `il_bibl_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bibl_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_settings_seq`
--

DROP TABLE IF EXISTS `il_bibl_settings_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_settings_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_settings_seq`
--

LOCK TABLES `il_bibl_settings_seq` WRITE;
/*!40000 ALTER TABLE `il_bibl_settings_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bibl_settings_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_translation`
--

DROP TABLE IF EXISTS `il_bibl_translation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_translation` (
  `id` int NOT NULL,
  `field_id` bigint NOT NULL,
  `language_key` varchar(2) NOT NULL,
  `translation` varchar(256) DEFAULT NULL,
  `description` longtext,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_translation`
--

LOCK TABLES `il_bibl_translation` WRITE;
/*!40000 ALTER TABLE `il_bibl_translation` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bibl_translation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bibl_translation_seq`
--

DROP TABLE IF EXISTS `il_bibl_translation_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bibl_translation_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bibl_translation_seq`
--

LOCK TABLES `il_bibl_translation_seq` WRITE;
/*!40000 ALTER TABLE `il_bibl_translation_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bibl_translation_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_block_setting`
--

DROP TABLE IF EXISTS `il_block_setting`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_block_setting` (
  `type` varchar(20) NOT NULL DEFAULT ' ',
  `user_id` int NOT NULL DEFAULT '0',
  `block_id` int NOT NULL DEFAULT '0',
  `setting` varchar(40) NOT NULL DEFAULT ' ',
  `value` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`type`,`user_id`,`block_id`,`setting`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_block_setting`
--

LOCK TABLES `il_block_setting` WRITE;
/*!40000 ALTER TABLE `il_block_setting` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_block_setting` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_blog`
--

DROP TABLE IF EXISTS `il_blog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_blog` (
  `id` int NOT NULL DEFAULT '0',
  `bg_color` char(6) DEFAULT NULL,
  `font_color` char(6) DEFAULT NULL,
  `img` varchar(255) DEFAULT NULL,
  `ppic` tinyint DEFAULT NULL,
  `rss_active` tinyint DEFAULT '0',
  `approval` tinyint DEFAULT '0',
  `abs_shorten` tinyint DEFAULT '0',
  `abs_shorten_len` smallint DEFAULT '0',
  `abs_image` tinyint DEFAULT '0',
  `abs_img_width` smallint DEFAULT '0',
  `abs_img_height` smallint DEFAULT '0',
  `keywords` tinyint NOT NULL DEFAULT '1',
  `authors` tinyint NOT NULL DEFAULT '1',
  `nav_mode` tinyint NOT NULL DEFAULT '1',
  `nav_list_post` smallint NOT NULL DEFAULT '10',
  `nav_list_mon` smallint DEFAULT '0',
  `ov_post` smallint DEFAULT '0',
  `nav_order` varchar(255) DEFAULT NULL,
  `nav_list_mon_with_post` int DEFAULT '3',
  `act_est_reading_time` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_blog`
--

LOCK TABLES `il_blog` WRITE;
/*!40000 ALTER TABLE `il_blog` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_blog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_blog_posting`
--

DROP TABLE IF EXISTS `il_blog_posting`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_blog_posting` (
  `id` int NOT NULL DEFAULT '0',
  `blog_id` int NOT NULL DEFAULT '0',
  `title` varchar(400) DEFAULT NULL,
  `created` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  `author` int NOT NULL DEFAULT '0',
  `approved` tinyint DEFAULT '0',
  `last_withdrawn` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_blog_posting`
--

LOCK TABLES `il_blog_posting` WRITE;
/*!40000 ALTER TABLE `il_blog_posting` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_blog_posting` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_blog_posting_seq`
--

DROP TABLE IF EXISTS `il_blog_posting_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_blog_posting_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_blog_posting_seq`
--

LOCK TABLES `il_blog_posting_seq` WRITE;
/*!40000 ALTER TABLE `il_blog_posting_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_blog_posting_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bt_bucket`
--

DROP TABLE IF EXISTS `il_bt_bucket`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bt_bucket` (
  `id` bigint NOT NULL DEFAULT '0',
  `user_id` bigint DEFAULT NULL,
  `root_task_id` bigint DEFAULT NULL,
  `current_task_id` bigint DEFAULT NULL,
  `state` smallint DEFAULT NULL,
  `total_number_of_tasks` int DEFAULT NULL,
  `percentage` smallint DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `last_heartbeat` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bt_bucket`
--

LOCK TABLES `il_bt_bucket` WRITE;
/*!40000 ALTER TABLE `il_bt_bucket` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bt_bucket` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bt_bucket_seq`
--

DROP TABLE IF EXISTS `il_bt_bucket_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bt_bucket_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bt_bucket_seq`
--

LOCK TABLES `il_bt_bucket_seq` WRITE;
/*!40000 ALTER TABLE `il_bt_bucket_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bt_bucket_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bt_task`
--

DROP TABLE IF EXISTS `il_bt_task`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bt_task` (
  `id` bigint NOT NULL DEFAULT '0',
  `type` varchar(256) DEFAULT NULL,
  `class_path` varchar(256) DEFAULT NULL,
  `class_name` varchar(256) DEFAULT NULL,
  `bucket_id` bigint DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bt_task`
--

LOCK TABLES `il_bt_task` WRITE;
/*!40000 ALTER TABLE `il_bt_task` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bt_task` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bt_task_seq`
--

DROP TABLE IF EXISTS `il_bt_task_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bt_task_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bt_task_seq`
--

LOCK TABLES `il_bt_task_seq` WRITE;
/*!40000 ALTER TABLE `il_bt_task_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bt_task_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bt_value`
--

DROP TABLE IF EXISTS `il_bt_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bt_value` (
  `id` bigint NOT NULL DEFAULT '0',
  `has_parent_task` tinyint DEFAULT NULL,
  `parent_task_id` bigint DEFAULT NULL,
  `hash` varchar(256) DEFAULT NULL,
  `type` varchar(256) DEFAULT NULL,
  `class_path` varchar(256) DEFAULT NULL,
  `class_name` varchar(256) DEFAULT NULL,
  `serialized` longtext,
  `bucket_id` bigint DEFAULT NULL,
  `position` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`bucket_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bt_value`
--

LOCK TABLES `il_bt_value` WRITE;
/*!40000 ALTER TABLE `il_bt_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bt_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bt_value_seq`
--

DROP TABLE IF EXISTS `il_bt_value_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bt_value_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bt_value_seq`
--

LOCK TABLES `il_bt_value_seq` WRITE;
/*!40000 ALTER TABLE `il_bt_value_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bt_value_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bt_value_to_task`
--

DROP TABLE IF EXISTS `il_bt_value_to_task`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bt_value_to_task` (
  `id` bigint NOT NULL DEFAULT '0',
  `task_id` bigint DEFAULT NULL,
  `value_id` bigint DEFAULT NULL,
  `bucket_id` bigint DEFAULT NULL,
  `position` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`task_id`),
  KEY `i2_idx` (`value_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bt_value_to_task`
--

LOCK TABLES `il_bt_value_to_task` WRITE;
/*!40000 ALTER TABLE `il_bt_value_to_task` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bt_value_to_task` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_bt_value_to_task_seq`
--

DROP TABLE IF EXISTS `il_bt_value_to_task_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_bt_value_to_task_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_bt_value_to_task_seq`
--

LOCK TABLES `il_bt_value_to_task_seq` WRITE;
/*!40000 ALTER TABLE `il_bt_value_to_task_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_bt_value_to_task_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_cert_cron_queue`
--

DROP TABLE IF EXISTS `il_cert_cron_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_cert_cron_queue` (
  `id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `adapter_class` varchar(255) NOT NULL,
  `state` varchar(255) NOT NULL,
  `started_timestamp` int NOT NULL DEFAULT '0',
  `template_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`obj_id`,`usr_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_cert_cron_queue`
--

LOCK TABLES `il_cert_cron_queue` WRITE;
/*!40000 ALTER TABLE `il_cert_cron_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_cert_cron_queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_cert_cron_queue_seq`
--

DROP TABLE IF EXISTS `il_cert_cron_queue_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_cert_cron_queue_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_cert_cron_queue_seq`
--

LOCK TABLES `il_cert_cron_queue_seq` WRITE;
/*!40000 ALTER TABLE `il_cert_cron_queue_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_cert_cron_queue_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_cert_template`
--

DROP TABLE IF EXISTS `il_cert_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_cert_template` (
  `id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `obj_type` varchar(255) NOT NULL DEFAULT '',
  `certificate_content` longtext NOT NULL,
  `certificate_hash` varchar(255) NOT NULL,
  `template_values` longtext NOT NULL,
  `background_image_path` varchar(255) DEFAULT NULL,
  `version` bigint NOT NULL DEFAULT '0',
  `ilias_version` varchar(255) NOT NULL DEFAULT 'v5.4.0',
  `created_timestamp` int NOT NULL DEFAULT '0',
  `currently_active` tinyint NOT NULL DEFAULT '0',
  `deleted` tinyint NOT NULL DEFAULT '0',
  `thumbnail_image_path` varchar(255) DEFAULT NULL,
  `background_image_ident` varchar(255) DEFAULT NULL,
  `thumbnail_image_ident` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`obj_id`),
  KEY `i2_idx` (`obj_id`,`deleted`),
  KEY `i3_idx` (`obj_id`,`currently_active`,`deleted`),
  KEY `i4_idx` (`obj_type`),
  KEY `i5_idx` (`background_image_path`,`currently_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_cert_template`
--

LOCK TABLES `il_cert_template` WRITE;
/*!40000 ALTER TABLE `il_cert_template` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_cert_template` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_cert_template_seq`
--

DROP TABLE IF EXISTS `il_cert_template_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_cert_template_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_cert_template_seq`
--

LOCK TABLES `il_cert_template_seq` WRITE;
/*!40000 ALTER TABLE `il_cert_template_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_cert_template_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_cert_user_cert`
--

DROP TABLE IF EXISTS `il_cert_user_cert`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_cert_user_cert` (
  `id` int NOT NULL DEFAULT '0',
  `pattern_certificate_id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `obj_type` varchar(255) NOT NULL DEFAULT '0',
  `usr_id` int NOT NULL DEFAULT '0',
  `user_name` varchar(255) NOT NULL DEFAULT '0',
  `acquired_timestamp` int NOT NULL DEFAULT '0',
  `certificate_content` longtext NOT NULL,
  `template_values` longtext NOT NULL,
  `valid_until` int DEFAULT NULL,
  `background_image_path` varchar(255) DEFAULT NULL,
  `version` varchar(255) NOT NULL DEFAULT '1',
  `ilias_version` varchar(255) NOT NULL DEFAULT 'v5.4.0',
  `currently_active` tinyint NOT NULL DEFAULT '0',
  `thumbnail_image_path` varchar(255) DEFAULT NULL,
  `certificate_id` varchar(64) NOT NULL DEFAULT '-',
  `background_image_ident` varchar(255) DEFAULT NULL,
  `thumbnail_image_ident` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `c1_idx` (`certificate_id`),
  KEY `i1_idx` (`obj_id`,`pattern_certificate_id`),
  KEY `i2_idx` (`usr_id`,`currently_active`),
  KEY `i3_idx` (`usr_id`,`currently_active`,`acquired_timestamp`),
  KEY `i4_idx` (`usr_id`,`obj_type`,`currently_active`),
  KEY `i5_idx` (`obj_id`,`currently_active`),
  KEY `i6_idx` (`usr_id`,`obj_id`,`currently_active`),
  KEY `i7_idx` (`background_image_path`,`currently_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_cert_user_cert`
--

LOCK TABLES `il_cert_user_cert` WRITE;
/*!40000 ALTER TABLE `il_cert_user_cert` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_cert_user_cert` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_cert_user_cert_seq`
--

DROP TABLE IF EXISTS `il_cert_user_cert_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_cert_user_cert_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_cert_user_cert_seq`
--

LOCK TABLES `il_cert_user_cert_seq` WRITE;
/*!40000 ALTER TABLE `il_cert_user_cert_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_cert_user_cert_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_certificate`
--

DROP TABLE IF EXISTS `il_certificate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_certificate` (
  `obj_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_certificate`
--

LOCK TABLES `il_certificate` WRITE;
/*!40000 ALTER TABLE `il_certificate` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_certificate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_custom_block`
--

DROP TABLE IF EXISTS `il_custom_block`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_custom_block` (
  `id` int NOT NULL DEFAULT '0',
  `context_obj_id` int DEFAULT NULL,
  `context_obj_type` varchar(10) DEFAULT NULL,
  `context_sub_obj_id` int DEFAULT NULL,
  `context_sub_obj_type` varchar(10) DEFAULT NULL,
  `type` varchar(20) DEFAULT NULL,
  `title` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_custom_block`
--

LOCK TABLES `il_custom_block` WRITE;
/*!40000 ALTER TABLE `il_custom_block` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_custom_block` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_custom_block_seq`
--

DROP TABLE IF EXISTS `il_custom_block_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_custom_block_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_custom_block_seq`
--

LOCK TABLES `il_custom_block_seq` WRITE;
/*!40000 ALTER TABLE `il_custom_block_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_custom_block_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_db_steps`
--

DROP TABLE IF EXISTS `il_db_steps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_db_steps` (
  `class` varchar(200) NOT NULL,
  `step` int NOT NULL,
  `started` varchar(26) DEFAULT NULL,
  `finished` varchar(26) DEFAULT NULL,
  PRIMARY KEY (`class`,`step`),
  KEY `i1_idx` (`class`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_db_steps`
--

LOCK TABLES `il_db_steps` WRITE;
/*!40000 ALTER TABLE `il_db_steps` DISABLE KEYS */;
INSERT INTO `il_db_steps` VALUES ('AbandonAuthRichTextEditorDatabaseUpdateSteps',1,'2025-07-18 06:53:07.037077','2025-07-18 06:53:07.037888'),('ilAccessControl8DBUpdateSteps',1,'2023-12-12 16:39:39.316416','2023-12-12 16:39:39.330104'),('ilAccessRBACDeleteDbkSteps',1,'2023-12-12 16:39:39.331118','2023-12-12 16:39:39.333780'),('ilAccessRBACDeleteDbkSteps',2,'2023-12-12 16:39:39.334376','2023-12-12 16:39:39.337374'),('ilAccessRBACDeleteDbkSteps',3,'2023-12-12 16:39:39.337997','2023-12-12 16:39:39.339521'),('ilADNDatabaseObjective',1,'2023-12-12 16:39:39.302966','2023-12-12 16:39:39.315435'),('ilAuthenticationDatabaseUpdateSteps8',1,'2023-12-12 16:39:39.340519','2023-12-12 16:39:39.348635'),('ilBadgeDBUpdateSteps',1,'2025-07-18 06:53:07.022218','2025-07-18 06:53:07.024081'),('ilBadgeDBUpdateSteps',2,'2025-07-18 06:53:07.024360','2025-07-18 06:53:07.026215'),('ilBibliograficDB80',1,'2023-12-12 16:39:39.349499','2023-12-12 16:39:39.355083'),('ilBibliograficDB80',2,'2023-12-12 16:39:39.355665','2023-12-12 16:39:39.362170'),('ilCalendarDBUpdateSteps10',1,'2025-07-18 06:53:07.293933','2025-07-18 06:53:07.295723'),('ilCalendarDBUpdateSteps10',2,'2025-07-18 06:53:07.295956','2025-07-18 06:53:07.296709'),('ilCalendarDBUpdateSteps9',1,'2023-12-12 16:39:39.363138','2023-12-12 16:39:39.376860'),('ilCalendarDBUpdateSteps9',2,'2023-12-12 16:39:39.377487','2023-12-12 16:39:39.399312'),('ilCertificateDatabaseUpdateSteps',1,'2023-12-12 16:39:39.400161','2023-12-12 16:39:39.413347'),('ilCertificateDatabaseUpdateSteps',2,'2023-12-12 16:39:39.413839','2023-12-12 16:39:39.417098'),('ilCertificateDatabaseUpdateSteps',3,'2023-12-12 16:39:39.417587','2023-12-12 16:39:39.426976'),('ilCertificateDatabaseUpdateSteps',4,'2023-12-12 16:39:39.427494','2023-12-12 16:39:39.434428'),('ilCertificateDatabaseUpdateSteps',5,'2023-12-12 16:39:39.434913','2023-12-12 16:39:39.449215'),('ilCertificateDatabaseUpdateSteps',6,'2025-07-18 06:53:07.323522','2025-07-18 06:53:07.325849'),('ilCertificateDatabaseUpdateSteps',7,'2025-07-18 06:53:07.326095','2025-07-18 06:53:07.330089'),('ilCertificateDatabaseUpdateSteps',8,'2025-07-18 06:53:07.330340','2025-07-18 06:53:07.332291'),('ilCertificateDatabaseUpdateSteps',9,'2025-07-18 06:53:07.332642','2025-07-18 06:53:07.346225'),('ilCmiXapiDatabaseUpdateSteps',1,'2023-12-12 16:39:39.512934','2023-12-12 16:39:39.518282'),('ilCmiXapiDatabaseUpdateSteps',2,'2023-12-12 16:39:39.518877','2023-12-12 16:39:39.524618'),('ilCmiXapiDatabaseUpdateSteps',3,'2023-12-12 16:39:39.525224','2023-12-12 16:39:39.530839'),('ilCmiXapiDatabaseUpdateSteps',4,'2023-12-12 16:39:39.531436','2023-12-12 16:39:39.537017'),('ilCmiXapiDatabaseUpdateSteps',5,'2023-12-12 16:39:39.537600','2023-12-12 16:39:39.543189'),('ilCmiXapiDatabaseUpdateSteps',6,'2023-12-12 16:39:39.543862','2023-12-12 16:39:39.554877'),('ilCmiXapiDatabaseUpdateSteps',7,'2023-12-12 16:39:39.555474','2023-12-12 16:39:39.561056'),('ilCmiXapiDatabaseUpdateSteps',8,'2023-12-12 16:39:39.561671','2023-12-12 16:39:39.567169'),('ilCmiXapiDatabaseUpdateSteps',9,'2023-12-12 16:39:39.567787','2023-12-12 16:39:39.573091'),('ilCmiXapiDatabaseUpdateSteps',10,'2023-12-12 16:39:39.573688','2023-12-12 16:39:39.579211'),('ilCmiXapiDatabaseUpdateSteps',11,'2023-12-12 16:39:39.579878','2023-12-12 16:39:39.585585'),('ilCmiXapiDatabaseUpdateSteps',12,'2023-12-12 16:39:39.586191','2023-12-12 16:39:39.586832'),('ilCmiXapiDatabaseUpdateSteps',13,'2023-12-12 16:39:39.587451','2023-12-12 16:39:39.593034'),('ilCmiXapiDatabaseUpdateSteps',14,'2023-12-12 16:39:39.593639','2023-12-12 16:39:39.599431'),('ilCmiXapiDatabaseUpdateSteps',15,'2023-12-12 16:39:39.600090','2023-12-12 16:39:39.611849'),('ilCmiXapiDatabaseUpdateSteps',16,'2023-12-12 16:39:39.612522','2023-12-12 16:39:39.624741'),('ilCmiXapiDatabaseUpdateSteps',17,'2024-04-30 15:11:09.019261','2024-04-30 15:11:09.025313'),('ilConditionsDBUpdateSteps',1,'2025-07-18 06:53:06.811671','2025-07-18 06:53:06.818282'),('ilContentPageUpdateSteps',1,'2023-12-12 16:39:39.689885','2023-12-12 16:39:39.690424'),('ilCourseDBUpdateSteps',1,'2025-07-18 06:53:07.415788','2025-07-18 06:53:07.485747'),('ilCourseObjectiveDBUpdateSteps',1,'2023-12-12 16:39:39.691358','2023-12-12 16:39:39.698495'),('ilCourseObjectiveDBUpdateSteps',2,'2023-12-12 16:39:39.699161','2023-12-12 16:39:39.705726'),('ilCourseObjectiveDBUpdateSteps',3,'2025-07-18 06:53:07.412535','2025-07-18 06:53:07.415155'),('ilCtrlDatabaseUpdateSteps',1,'2023-12-12 16:39:41.316207','2023-12-12 16:39:41.325405'),('ilCtrlDatabaseUpdateSteps',2,'2023-12-12 16:39:41.326018','2023-12-12 16:39:41.340462'),('ilCtrlDatabaseUpdateSteps',3,'2023-12-12 16:39:41.341252','2023-12-12 16:39:41.349406'),('ilCtrlDatabaseUpdateSteps',4,'2023-12-12 16:39:41.349953','2023-12-12 16:39:41.357146'),('ilCtrlDatabaseUpdateSteps',5,'2023-12-12 16:39:41.357629','2023-12-12 16:39:41.364305'),('ilCtrlDatabaseUpdateSteps',6,'2023-12-12 16:39:41.364838','2023-12-12 16:39:41.371618'),('ilDataCollectionDBUpdateSteps10',1,'2025-08-26 15:16:08.639522','2025-08-26 15:16:08.640706'),('ilDataCollectionDBUpdateSteps9',1,'2023-12-12 16:39:39.706792','2023-12-12 16:39:39.715602'),('ilDataCollectionDBUpdateSteps9',2,'2023-12-12 16:39:39.716246','2023-12-12 16:39:39.739058'),('ilDataCollectionDBUpdateSteps9',3,'2023-12-12 16:39:39.739786','2023-12-12 16:39:39.748476'),('ilDataCollectionDBUpdateSteps9',4,'2023-12-12 16:39:39.749114','2023-12-12 16:39:39.757937'),('ilDataCollectionDBUpdateSteps9',5,'2023-12-12 16:39:39.758567','2023-12-12 16:39:39.771869'),('ilDataCollectionDBUpdateSteps9',6,'2023-12-12 16:39:39.772568','2023-12-12 16:39:39.773403'),('ilDataCollectionDBUpdateSteps9',7,'2023-12-12 16:39:39.773989','2023-12-12 16:39:39.774820'),('ilDataCollectionDBUpdateSteps9',8,'2023-12-12 16:39:39.775403','2023-12-12 16:39:39.781016'),('ilDataCollectionDBUpdateSteps9',9,'2024-04-30 15:11:09.026028','2024-04-30 15:11:09.026500'),('ilDataCollectionDBUpdateSteps9',10,'2025-07-18 06:53:07.375632','2025-07-18 06:53:07.388538'),('ilDataCollectionDBUpdateSteps9',11,'2025-07-18 06:53:07.388785','2025-07-18 06:53:07.389368'),('ilDataCollectionDBUpdateSteps9',12,'2025-07-18 06:53:07.389649','2025-07-18 06:53:07.390068'),('ilDataCollectionDBUpdateSteps9',13,'2025-07-18 06:53:07.390347','2025-07-18 06:53:07.398573'),('ilDataCollectionDBUpdateSteps9',14,'2025-07-18 06:53:07.398819','2025-07-18 06:53:07.399030'),('ilDataCollectionDBUpdateSteps9',15,'2025-07-18 06:53:07.399303','2025-07-18 06:53:07.406333'),('ilDataCollectionDBUpdateSteps9',16,'2025-07-18 06:53:07.406671','2025-07-18 06:53:07.407459'),('ilDataCollectionDBUpdateSteps9',17,'2025-07-18 06:53:07.407725','2025-07-18 06:53:07.408120'),('ilDataCollectionDBUpdateSteps9',18,'2025-07-18 06:53:07.408349','2025-07-18 06:53:07.408549'),('ilDataCollectionDBUpdateSteps9',19,'2025-07-18 06:53:07.408797','2025-07-18 06:53:07.410706'),('ilDataCollectionDBUpdateSteps9',20,'2025-07-18 06:53:07.410989','2025-07-18 06:53:07.411451'),('ilECSDBUpdateSteps',1,'2023-12-12 16:39:39.782084','2023-12-12 16:39:39.788234'),('ilECSUpdateSteps8',1,'2023-12-12 16:39:41.504023','2023-12-12 16:39:41.515769'),('ilECSUpdateSteps8',2,'2023-12-12 16:39:41.516395','2023-12-12 16:39:41.521923'),('ilECSUpdateSteps8',3,'2023-12-12 16:39:41.522527','2023-12-12 16:39:41.528127'),('ilECSUpdateSteps8',4,'2023-12-12 16:39:41.528772','2023-12-12 16:39:41.534227'),('ilECSUpdateSteps8',5,'2023-12-12 16:39:41.534847','2023-12-12 16:39:41.540300'),('ilECSUpdateSteps8',6,'2023-12-12 16:39:41.540918','2023-12-12 16:39:41.547675'),('ilECSUpdateSteps8',7,'2023-12-12 16:39:41.548340','2023-12-12 16:39:41.553727'),('ilECSUpdateSteps9',1,'2025-07-18 06:53:07.084861','2025-07-18 06:53:07.114341'),('ilECSUpdateSteps9',2,'2025-07-18 06:53:07.117677','2025-07-18 06:53:07.119427'),('ilECSUpdateSteps9',3,'2025-07-18 06:53:07.123785','2025-07-18 06:53:07.126087'),('ilFileObjectDatabaseObjective',1,'2023-12-12 16:39:39.914414','2023-12-12 16:39:39.920671'),('ilFileObjectDatabaseObjective',2,'2023-12-12 16:39:39.921276','2023-12-12 16:39:39.928502'),('ilFileObjectDatabaseObjective',3,'2023-12-12 16:39:39.929117','2023-12-12 16:39:39.929997'),('ilFileObjectDatabaseObjective',4,'2023-12-12 16:39:39.930587','2023-12-12 16:39:39.940527'),('ilFileObjectDatabaseObjective',5,'2023-12-12 16:39:39.941189','2023-12-12 16:39:39.941882'),('ilFileObjectDatabaseObjective',6,'2023-12-12 16:39:39.942672','2023-12-12 16:39:39.949521'),('ilFileObjectDatabaseObjective',7,'2023-12-12 16:39:39.950136','2023-12-12 16:39:39.950687'),('ilFileObjectRBACDatabaseSteps',1,'2023-12-12 16:39:40.132129','2023-12-12 16:39:40.132786'),('ilFileObjectRBACDatabaseSteps',2,'2023-12-12 16:39:40.133332','2023-12-12 16:39:40.135571'),('ilFileObjectRBACDatabaseSteps',3,'2025-07-18 06:53:07.309981','2025-07-18 06:53:07.310260'),('ilFileServicesDatabaseObjective',1,'2023-12-12 16:39:38.029979','2023-12-12 16:39:38.038271'),('ilForumDatabaseUpdateSteps',1,'2023-12-12 16:39:40.136549','2023-12-12 16:39:40.144064'),('ilForumDatabaseUpdateSteps',2,'2023-12-12 16:39:40.144602','2023-12-12 16:39:40.145078'),('ilForumDatabaseUpdateSteps',3,'2023-12-12 16:39:40.145597','2023-12-12 16:39:40.151569'),('ilForumDatabaseUpdateSteps',4,'2023-12-12 16:39:40.152226','2023-12-12 16:39:40.160037'),('ilForumDatabaseUpdateSteps',5,'2023-12-12 16:39:40.160566','2023-12-12 16:39:40.162235'),('ilForumDatabaseUpdateSteps',6,'2023-12-12 16:39:40.162719','2023-12-12 16:39:40.167926'),('ilForumDatabaseUpdateSteps10',1,'2025-07-18 06:53:06.877221','2025-07-18 06:53:06.878629'),('ilForumDatabaseUpdateSteps9',1,'2023-12-12 16:39:40.168707','2023-12-12 16:39:40.175252'),('ilForumDatabaseUpdateSteps9',2,'2023-12-12 16:39:40.175770','2023-12-12 16:39:40.182283'),('ilGlossaryDBUpdateSteps',1,'2023-12-12 16:39:40.183155','2023-12-12 16:39:40.196432'),('ilGlossaryDBUpdateSteps',2,'2023-12-12 16:39:40.197085','2023-12-12 16:39:40.202493'),('ilGlossaryDBUpdateSteps',3,'2023-12-12 16:39:40.203145','2023-12-12 16:39:40.215012'),('ilGlossaryDBUpdateSteps',4,'2023-12-12 16:39:40.215687','2023-12-12 16:39:40.227487'),('ilGlossaryDBUpdateSteps',5,'2023-12-12 16:39:40.228164','2023-12-12 16:39:40.238518'),('ilGlossaryDBUpdateSteps',6,'2023-12-12 16:39:40.239153','2023-12-12 16:39:40.250834'),('ilHTLMDatabaseUpdateSteps10',1,'2025-07-18 06:53:07.300854','2025-07-18 06:53:07.303225'),('ILIAS\\AccessControl\\Setup\\AccessControl10DBUpdateSteps',1,'2025-07-18 06:53:07.297283','2025-07-18 06:53:07.300409'),('ILIAS\\Administration\\Setup\\ilAdministrationDBUpdateSteps',1,'2023-12-12 16:39:38.661190','2023-12-12 16:39:38.661665'),('ILIAS\\Administration\\Setup\\ilAdministrationDBUpdateSteps',2,'2023-12-12 16:39:38.662245','2023-12-12 16:39:38.676688'),('ILIAS\\Administration\\Setup\\ilAdministrationDBUpdateSteps',3,'2023-12-12 16:39:38.677408','2023-12-12 16:39:38.710199'),('ILIAS\\Administration\\Setup\\ilAdministrationDBUpdateSteps',4,'2023-12-12 16:39:38.710871','2023-12-12 16:39:38.711794'),('ILIAS\\AdvancedMetaData\\Setup\\DBUpdateSteps10',1,'2025-07-18 06:53:07.071219','2025-07-18 06:53:07.073131'),('ILIAS\\AdvancedMetaData\\Setup\\DBUpdateSteps10',2,'2025-07-18 06:53:07.073390','2025-07-18 06:53:07.077219'),('ILIAS\\AdvancedMetaData\\Setup\\DBUpdateSteps8',1,'2023-12-12 16:39:38.712839','2023-12-12 16:39:38.721799'),('ILIAS\\AdvancedMetaData\\Setup\\DBUpdateSteps8',2,'2023-12-12 16:39:38.722433','2023-12-12 16:39:38.727867'),('ILIAS\\AdvancedMetaData\\Setup\\DBUpdateSteps8',3,'2023-12-12 16:39:38.728492','2023-12-12 16:39:38.729626'),('ILIAS\\AdvancedMetaData\\Setup\\DBUpdateSteps8',4,'2025-07-18 06:53:07.068904','2025-07-18 06:53:07.070758'),('ILIAS\\Authentication\\Setup\\AbandonLoadDependantSessionDatabaseUpdateObjective',1,'2025-07-18 06:53:07.038389','2025-07-18 06:53:07.049057'),('ILIAS\\Blog\\Setup\\BlogDBUpdateSteps',1,'2023-12-12 16:39:38.730712','2023-12-12 16:39:38.736204'),('ILIAS\\Blog\\Setup\\BlogDBUpdateSteps',2,'2023-12-12 16:39:38.736861','2023-12-12 16:39:38.737915'),('ILIAS\\BookingManager\\Setup\\ilBookingManager8HotfixDBUpdateSteps',1,'2025-07-18 06:53:07.036203','2025-07-18 06:53:07.036548'),('ILIAS\\BookingManager\\Setup\\ilBookingManagerDBUpdateSteps',1,'2023-12-12 16:39:38.738873','2023-12-12 16:39:38.746442'),('ILIAS\\BookingManager\\Setup\\ilBookingManagerDBUpdateSteps',2,'2023-12-12 16:39:38.747069','2023-12-12 16:39:38.753419'),('ILIAS\\BookingManager\\Setup\\ilBookingManagerDBUpdateSteps',3,'2023-12-12 16:39:38.754020','2023-12-12 16:39:38.760822'),('ILIAS\\BookingManager\\Setup\\ilBookingManagerDBUpdateSteps',4,'2023-12-12 16:39:38.761441','2023-12-12 16:39:38.773305'),('ILIAS\\BookingManager\\Setup\\ilBookingManagerDBUpdateSteps',5,'2023-12-12 16:39:38.774036','2023-12-12 16:39:38.779556'),('ILIAS\\BookingManager\\Setup\\ilBookingManagerDBUpdateSteps',6,'2023-12-12 16:39:38.780215','2023-12-12 16:39:38.785707'),('ILIAS\\BookingManager\\Setup\\ilBookingManagerDBUpdateSteps',7,'2023-12-12 16:39:38.786336','2023-12-12 16:39:38.797865'),('ILIAS\\BookingManager\\Setup\\ilBookingManagerDBUpdateSteps',8,'2025-07-18 06:53:07.031473','2025-07-18 06:53:07.033393'),('ILIAS\\BookingManager\\Setup\\ilBookingManagerDBUpdateSteps',9,'2025-07-18 06:53:07.033694','2025-07-18 06:53:07.035764'),('ILIAS\\Chatroom\\Setup\\UpdateSteps',1,'2023-12-12 16:39:39.450025','2023-12-12 16:39:39.490305'),('ILIAS\\Chatroom\\Setup\\UpdateSteps',2,'2023-12-12 16:39:39.490976','2023-12-12 16:39:39.502927'),('ILIAS\\Chatroom\\Setup\\UpdateSteps',3,'2023-12-12 16:39:39.503552','2023-12-12 16:39:39.510145'),('ILIAS\\Chatroom\\Setup\\UpdateSteps',4,'2023-12-12 16:39:39.510759','2023-12-12 16:39:39.511899'),('ILIAS\\Chatroom\\Setup\\UpdateSteps',5,'2025-07-18 06:53:07.077705','2025-07-18 06:53:07.082265'),('ILIAS\\Chatroom\\Setup\\UpdateSteps',6,'2025-07-18 06:53:07.082573','2025-07-18 06:53:07.082933'),('ILIAS\\Cloud\\RemoveCloudDBUpdate',1,'2025-07-18 06:53:07.287374','2025-07-18 06:53:07.290554'),('ILIAS\\Cloud\\RemoveCloudDBUpdate',2,'2025-07-18 06:53:07.290806','2025-07-18 06:53:07.291026'),('ILIAS\\COPage\\IntLink\\Setup\\LinkDBUpdateSteps',1,'2025-07-18 06:53:07.310766','2025-07-18 06:53:07.312473'),('ILIAS\\COPage\\IntLink\\Setup\\LinkDBUpdateSteps',2,'2025-07-18 06:53:07.312724','2025-07-18 06:53:07.313079'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',1,'2023-12-12 16:39:37.399454','2023-12-12 16:39:37.408012'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',2,'2023-12-12 16:39:37.408541','2023-12-12 16:39:37.422711'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',3,'2023-12-12 16:39:37.423333','2023-12-12 16:39:37.425736'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',4,'2023-12-12 16:39:37.426343','2023-12-12 16:39:37.431884'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',5,'2023-12-12 16:39:37.432512','2023-12-12 16:39:37.433734'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',6,'2023-12-12 16:39:37.434361','2023-12-12 16:39:37.434807'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',7,'2023-12-12 16:39:37.435380','2023-12-12 16:39:37.436265'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',8,'2023-12-12 16:39:37.436849','2023-12-12 16:39:37.437726'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',9,'2023-12-12 16:39:37.438294','2023-12-12 16:39:37.439166'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',10,'2023-12-12 16:39:37.439832','2023-12-12 16:39:37.440784'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',11,'2023-12-12 16:39:37.441392','2023-12-12 16:39:37.442291'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',12,'2023-12-12 16:39:37.442881','2023-12-12 16:39:37.445224'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',13,'2025-07-18 06:53:06.497670','2025-07-18 06:53:06.498699'),('ILIAS\\COPage\\Setup\\ilCOPageDBUpdateSteps',14,'2025-07-18 06:53:06.498949','2025-07-18 06:53:06.500011'),('ILIAS\\COPage\\Setup\\ilCOPageHotfix9DBUpdateSteps',1,'2025-07-18 06:53:07.303785','2025-07-18 06:53:07.306634'),('ILIAS\\Dashboard\\Setup\\ilDashboardUpdateSteps',1,'2023-12-12 16:39:38.799015','2023-12-12 16:39:38.800401'),('ILIAS\\Dashboard\\Setup\\ilDashboardUpdateSteps',2,'2023-12-12 16:39:38.800987','2023-12-12 16:39:38.809540'),('ILIAS\\Dashboard\\Setup\\ilDashboardUpdateSteps',3,'2025-07-18 06:53:07.319271','2025-07-18 06:53:07.319651'),('ILIAS\\EmployeeTalk\\Setup\\ilEmployeeTalkDBUpdateSteps',1,'2023-12-12 16:39:38.816858','2023-12-12 16:39:38.817317'),('ILIAS\\EmployeeTalk\\Setup\\ilEmployeeTalkDBUpdateSteps',2,'2023-12-12 16:39:38.817979','2023-12-12 16:39:38.841591'),('ILIAS\\EmployeeTalk\\Setup\\ilEmployeeTalkDBUpdateSteps',3,'2023-12-12 16:39:38.842258','2023-12-12 16:39:38.847709'),('ILIAS\\EmployeeTalk\\Setup\\ilEmployeeTalkDBUpdateSteps',4,'2023-12-12 16:39:38.848329','2023-12-12 16:39:38.848771'),('ILIAS\\EmployeeTalk\\Setup\\ilEmployeeTalkDBUpdateSteps',5,'2023-12-12 16:39:38.849355','2023-12-12 16:39:38.861092'),('ILIAS\\EmployeeTalk\\Setup\\ilEmployeeTalkDBUpdateSteps',6,'2023-12-12 16:39:38.861704','2023-12-12 16:39:38.867089'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',1,'2023-12-12 16:39:39.798148','2023-12-12 16:39:39.804867'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',2,'2023-12-12 16:39:39.805502','2023-12-12 16:39:39.812537'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',3,'2023-12-12 16:39:39.813214','2023-12-12 16:39:39.820004'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',4,'2023-12-12 16:39:39.820636','2023-12-12 16:39:39.826826'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',5,'2023-12-12 16:39:39.827442','2023-12-12 16:39:39.833671'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',6,'2023-12-12 16:39:39.834305','2023-12-12 16:39:39.839961'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',7,'2023-12-12 16:39:39.840608','2023-12-12 16:39:39.849303'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',8,'2023-12-12 16:39:39.849936','2023-12-12 16:39:39.850592'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',9,'2023-12-12 16:39:39.851188','2023-12-12 16:39:39.865679'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',10,'2023-12-12 16:39:39.866319','2023-12-12 16:39:39.872521'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',11,'2023-12-12 16:39:39.873152','2023-12-12 16:39:39.879330'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',12,'2023-12-12 16:39:39.879965','2023-12-12 16:39:39.885563'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',13,'2023-12-12 16:39:39.886245','2023-12-12 16:39:39.892015'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',14,'2023-12-12 16:39:39.892704','2023-12-12 16:39:39.898466'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',15,'2023-12-12 16:39:39.899113','2023-12-12 16:39:39.911924'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',16,'2023-12-12 16:39:39.912625','2023-12-12 16:39:39.913394'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',17,'2024-04-30 15:11:09.027177','2024-04-30 15:11:09.030647'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',18,'2025-07-18 06:53:07.487793','2025-07-18 06:53:07.489870'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',19,'2025-07-18 06:53:07.490123','2025-07-18 06:53:07.494051'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',20,'2025-07-18 06:53:07.494338','2025-07-18 06:53:07.494651'),('ILIAS\\Exercise\\Setup\\ilExerciseDBUpdateSteps',21,'2025-07-18 06:53:07.494921','2025-07-18 06:53:07.496850'),('ILIAS\\Export\\HTML\\Setup\\DBHTMLExportUpdateSteps',1,'2025-07-18 06:53:06.830880','2025-07-18 06:53:06.834781'),('ILIAS\\Export\\HTML\\Setup\\DBHTMLExportUpdateSteps',2,'2025-07-18 06:53:06.835044','2025-07-18 06:53:06.835343'),('ILIAS\\Export\\HTML\\Setup\\DBHTMLExportUpdateSteps',3,'2025-07-18 06:53:06.835575','2025-07-18 06:53:06.835780'),('ILIAS\\Export\\HTML\\Setup\\DBHTMLExportUpdateSteps',4,'2025-07-18 06:53:06.836042','2025-07-18 06:53:06.837868'),('ILIAS\\Export\\Setup\\DBUpdateSteps10',1,'2025-07-18 06:53:06.819007','2025-07-18 06:53:06.823388'),('ILIAS\\Export\\Setup\\DBUpdateSteps10',2,'2025-07-18 06:53:06.823700','2025-07-18 06:53:06.827577'),('ILIAS\\Export\\Setup\\DBUpdateSteps10',3,'2025-07-18 06:53:06.827816','2025-07-18 06:53:06.830359'),('ILIAS\\GlobalScreen_\\UI\\Footer\\Setup\\DB100',1,'2025-07-18 06:53:06.887638','2025-07-18 06:53:06.888332'),('ILIAS\\GlobalScreen_\\UI\\Footer\\Setup\\DB100',2,'2025-07-18 06:53:06.888657','2025-07-18 06:53:06.890333'),('ILIAS\\GlobalScreen_\\UI\\Footer\\Setup\\DB100',3,'2025-07-18 06:53:06.890586','2025-07-18 06:53:06.894480'),('ILIAS\\GlobalScreen_\\UI\\Footer\\Setup\\DB100',4,'2025-07-18 06:53:06.894725','2025-07-18 06:53:06.897315'),('ILIAS\\GlobalScreen_\\UI\\Footer\\Setup\\DB100',5,'2025-07-18 06:53:06.897582','2025-07-18 06:53:06.898096'),('ILIAS\\Help\\Setup\\ilHelpDB10HotfixSteps',1,'2026-03-10 16:31:24.642927','2026-03-10 16:31:24.648560'),('ILIAS\\Help\\Setup\\ilHelpDBUpdateSteps',1,'2023-12-12 16:39:38.874568','2023-12-12 16:39:38.880049'),('ILIAS\\Help\\Setup\\ilHelpDBUpdateSteps',2,'2023-12-12 16:39:38.880668','2023-12-12 16:39:38.886115'),('ILIAS\\Help\\Setup\\ilHelpDBUpdateSteps',3,'2023-12-12 16:39:38.886720','2023-12-12 16:39:38.887276'),('ILIAS\\Help\\Setup\\ilHelpDBUpdateSteps',4,'2025-07-18 06:53:06.874623','2025-07-18 06:53:06.876635'),('ILIAS\\Help\\Setup\\ilHelpDBUpdateSteps',5,'2025-12-16 16:31:28.054187','2025-12-16 16:31:28.058926'),('ILIAS\\ItemGroup\\Setup\\ilItemGroupDBUpdateSteps',1,'2023-12-12 16:39:38.894598','2023-12-12 16:39:38.900233'),('ILIAS\\ItemGroup\\Setup\\ilItemGroupDBUpdateSteps',2,'2023-12-12 16:39:38.900874','2023-12-12 16:39:38.906340'),('ILIAS\\LDAP\\Setup\\LDAPBindPasswordFieldMigration',1,'2025-07-18 06:53:07.061046','2025-07-18 06:53:07.065188'),('ILIAS\\LearningModule\\Setup\\LearningModuleDBUpdateSteps',1,'2023-12-12 16:39:38.907450','2023-12-12 16:39:38.912966'),('ILIAS\\LearningModule\\Setup\\LearningModuleDBUpdateSteps',2,'2023-12-12 16:39:38.913604','2023-12-12 16:39:38.919087'),('ILIAS\\LearningModule\\Setup\\LearningModuleDBUpdateSteps',3,'2025-07-18 06:53:07.065684','2025-07-18 06:53:07.065996'),('ILIAS\\LegalDocuments\\Setup\\UpdateSteps',1,'2023-12-12 16:39:38.920097','2023-12-12 16:39:38.970055'),('ILIAS\\LegalDocuments\\Setup\\UpdateSteps',2,'2023-12-12 16:39:38.970741','2023-12-12 16:39:38.971244'),('ILIAS\\LegalDocuments\\Setup\\UpdateSteps',3,'2024-01-31 14:38:25.383413','2024-01-31 14:38:25.389480'),('ILIAS\\Link\\Setup\\LinkDBUpdateSteps',1,'2023-12-12 16:39:38.972279','2023-12-12 16:39:38.980246'),('ILIAS\\Link\\Setup\\LinkDBUpdateSteps',2,'2023-12-12 16:39:38.980881','2023-12-12 16:39:38.981557'),('ILIAS\\MediaCast\\Setup\\ilMediaCastDBUpdateSteps',1,'2023-12-12 16:39:38.982512','2023-12-12 16:39:38.988267'),('ILIAS\\MediaCast\\Setup\\ilMediaCastDBUpdateSteps',2,'2023-12-12 16:39:38.988894','2023-12-12 16:39:38.994316'),('ILIAS\\MediaCast\\Setup\\ilMediaCastDBUpdateSteps',3,'2023-12-12 16:39:38.994925','2023-12-12 16:39:39.000555'),('ILIAS\\MediaCast\\Setup\\ilMediaCastDBUpdateSteps',4,'2023-12-12 16:39:39.001272','2023-12-12 16:39:39.004364'),('ILIAS\\MediaObjects\\Setup\\ilMediaObjectsDBUpdateSteps',1,'2023-12-12 16:39:39.005516','2023-12-12 16:39:39.006631'),('ILIAS\\MediaObjects\\Setup\\ilMediaObjectsDBUpdateSteps',2,'2024-01-31 14:38:25.390434','2024-01-31 14:38:25.391265'),('ILIAS\\MediaObjects\\Setup\\ilMediaObjectsDBUpdateSteps',3,'2025-07-18 06:53:06.840760','2025-07-18 06:53:06.841115'),('ILIAS\\MediaObjects\\Setup\\ilMediaObjectsDBUpdateSteps',4,'2025-07-18 06:53:06.841342','2025-07-18 06:53:06.843238'),('ILIAS\\MediaObjects\\Setup\\ilMediaObjectsDBUpdateSteps',5,'2025-07-18 06:53:06.843506','2025-07-18 06:53:06.844562'),('ILIAS\\MediaObjects\\Setup\\ilMediaObjectsDBUpdateSteps',6,'2025-07-18 06:53:06.844821','2025-07-18 06:53:06.847069'),('ILIAS\\MediaObjects\\Setup\\ilMediaObjectsDBUpdateSteps',7,'2025-07-18 06:53:06.847352','2025-07-18 06:53:06.849354'),('ILIAS\\Notes\\Setup\\ilNotesDBUpdateSteps',1,'2023-12-12 16:39:39.007597','2023-12-12 16:39:39.013002'),('ILIAS\\Notes\\Setup\\ilNotesDBUpdateSteps',2,'2025-07-18 06:53:07.348284','2025-07-18 06:53:07.348904'),('ILIAS\\Notes\\Setup\\ilNotesDBUpdateSteps',3,'2025-07-18 06:53:07.349188','2025-07-18 06:53:07.349521'),('ILIAS\\Object\\Setup\\ilObject9DBUpdateSteps',1,'2023-12-12 16:39:39.019667','2023-12-12 16:39:39.024275'),('ILIAS\\Object\\Setup\\ilObject9DBUpdateSteps',2,'2023-12-12 16:39:39.024758','2023-12-12 16:39:39.092466'),('ILIAS\\Object\\Setup\\ilObjectDBUpdateSteps',1,'2023-12-12 16:39:39.013957','2023-12-12 16:39:39.018894'),('ILIAS\\Object\\Setup\\ilObjectDBUpdateSteps',2,'2025-07-18 06:53:07.049556','2025-07-18 06:53:07.050318'),('ILIAS\\Object\\Setup\\ilObjectDBUpdateSteps',3,'2025-07-18 06:53:07.050620','2025-07-18 06:53:07.050885'),('ILIAS\\Object\\Setup\\ilObjectDBUpdateSteps',4,'2025-07-18 06:53:07.051152','2025-07-18 06:53:07.051571'),('ILIAS\\Object\\Setup\\ilObjectDBUpdateSteps',5,'2025-07-18 06:53:07.051796','2025-07-18 06:53:07.052070'),('ILIAS\\Poll\\Setup\\DBUpdateSteps10',1,'2025-07-18 06:53:07.052701','2025-07-18 06:53:07.056492'),('ILIAS\\Poll\\Setup\\DBUpdateSteps10',2,'2025-07-18 06:53:07.056777','2025-07-18 06:53:07.059056'),('ILIAS\\Portfolio\\Setup\\ilPortfolioDBUpdateSteps',1,'2023-12-12 16:39:39.093581','2023-12-12 16:39:39.105685'),('ILIAS\\Portfolio\\Setup\\ilPortfolioDBUpdateSteps',2,'2025-07-18 06:53:06.879129','2025-07-18 06:53:06.879418'),('ILIAS\\Portfolio\\Setup\\ilPortfolioDBUpdateSteps',3,'2026-03-10 16:31:24.651310','2026-03-10 16:31:24.651612'),('ILIAS\\Repository\\Setup\\RepositoryDBUpdateSteps',1,'2023-12-12 16:39:39.106736','2023-12-12 16:39:39.107544'),('ILIAS\\Repository\\Setup\\RepositoryDBUpdateSteps',2,'2025-07-18 06:53:07.317247','2025-07-18 06:53:07.318819'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',1,'2023-12-12 16:39:39.108632','2023-12-12 16:39:39.120662'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',2,'2023-12-12 16:39:39.121328','2023-12-12 16:39:39.146185'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',3,'2023-12-12 16:39:39.146860','2023-12-12 16:39:39.152866'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',4,'2023-12-12 16:39:39.153637','2023-12-12 16:39:39.159526'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',5,'2023-12-12 16:39:39.160105','2023-12-12 16:39:39.164979'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',6,'2023-12-12 16:39:39.165526','2023-12-12 16:39:39.176173'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',7,'2023-12-12 16:39:39.176665','2023-12-12 16:39:39.177236'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',8,'2023-12-12 16:39:39.177705','2023-12-12 16:39:39.178231'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',9,'2023-12-12 16:39:39.178728','2023-12-12 16:39:39.183344'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',10,'2023-12-12 16:39:39.183836','2023-12-12 16:39:39.184355'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',11,'2023-12-12 16:39:39.184826','2023-12-12 16:39:39.190503'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',12,'2023-12-12 16:39:39.190996','2023-12-12 16:39:39.196765'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',13,'2024-01-31 14:38:25.392396','2024-01-31 14:38:25.392882'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',14,'2024-01-31 14:38:25.393355','2024-01-31 14:38:25.394528'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',15,'2024-01-31 14:38:25.395022','2024-01-31 14:38:25.395529'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',16,'2024-01-31 14:38:25.396022','2024-01-31 14:38:25.396473'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',17,'2024-01-31 14:38:25.396963','2024-01-31 14:38:25.397440'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',18,'2024-01-31 14:38:25.397913','2024-01-31 14:38:25.398366'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',19,'2024-01-31 14:38:25.398856','2024-01-31 14:38:25.399275'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',20,'2024-04-30 15:11:09.017679','2024-04-30 15:11:09.018014'),('ILIAS\\Style\\Content\\Setup\\ilStyleDBUpdateSteps',21,'2025-07-18 06:53:06.838357','2025-07-18 06:53:06.840247'),('ILIAS\\SurveyQuestionPool\\Setup\\SurveyQuestionPoolDBUpdateSteps',1,'2025-07-18 06:53:07.066560','2025-07-18 06:53:07.068398'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',1,'2025-07-18 06:53:07.209600','2025-07-18 06:53:07.213786'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',2,'2025-07-18 06:53:07.214054','2025-07-18 06:53:07.214388'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',3,'2025-07-18 06:53:07.214698','2025-07-18 06:53:07.244110'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',4,'2025-07-18 06:53:07.244429','2025-07-18 06:53:07.249594'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',5,'2025-07-18 06:53:07.250002','2025-07-18 06:53:07.258408'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',6,'2025-07-18 06:53:07.258688','2025-07-18 06:53:07.260977'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',7,'2025-07-18 06:53:07.261249','2025-07-18 06:53:07.268162'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',8,'2025-07-18 06:53:07.268436','2025-07-18 06:53:07.270400'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',9,'2025-07-18 06:53:07.270663','2025-07-18 06:53:07.271049'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',10,'2025-07-18 06:53:07.271290','2025-07-18 06:53:07.274288'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',11,'2025-07-18 06:53:07.274544','2025-07-18 06:53:07.278419'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',12,'2025-07-18 06:53:07.278684','2025-07-18 06:53:07.283826'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',13,'2025-07-18 06:53:07.284103','2025-07-18 06:53:07.284491'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',14,'2025-07-18 06:53:07.284730','2025-07-18 06:53:07.284965'),('ILIAS\\Test\\Setup\\Test10DBUpdateSteps',15,'2026-03-10 16:31:24.638838','2026-03-10 16:31:24.639090'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',1,'2025-07-18 06:53:07.128907','2025-07-18 06:53:07.132259'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',2,'2025-07-18 06:53:07.134005','2025-07-18 06:53:07.137416'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',3,'2025-07-18 06:53:07.138807','2025-07-18 06:53:07.141647'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',4,'2025-07-18 06:53:07.144340','2025-07-18 06:53:07.146907'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',5,'2025-07-18 06:53:07.147896','2025-07-18 06:53:07.150599'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',6,'2025-07-18 06:53:07.151500','2025-07-18 06:53:07.154193'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',7,'2025-07-18 06:53:07.157733','2025-07-18 06:53:07.160482'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',8,'2025-07-18 06:53:07.161608','2025-07-18 06:53:07.180025'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',9,'2025-07-18 06:53:07.180734','2025-07-18 06:53:07.181645'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',10,'2025-07-18 06:53:07.182375','2025-07-18 06:53:07.183451'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',11,'2025-07-18 06:53:07.184037','2025-07-18 06:53:07.185039'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',12,'2025-07-18 06:53:07.185666','2025-07-18 06:53:07.186596'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',13,'2025-07-18 06:53:07.187026','2025-07-18 06:53:07.188357'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',14,'2025-07-18 06:53:07.188783','2025-07-18 06:53:07.194378'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',15,'2025-07-18 06:53:07.194689','2025-07-18 06:53:07.195416'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',16,'2025-07-18 06:53:07.195771','2025-07-18 06:53:07.196418'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',17,'2025-07-18 06:53:07.196774','2025-07-18 06:53:07.199249'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',18,'2025-07-18 06:53:07.199571','2025-07-18 06:53:07.200289'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',19,'2025-07-18 06:53:07.200642','2025-07-18 06:53:07.201362'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',20,'2025-07-18 06:53:07.201680','2025-07-18 06:53:07.202021'),('ILIAS\\Test\\Setup\\Test9DBUpdateSteps',22,'2025-07-18 06:53:07.202319','2025-07-18 06:53:07.208907'),('ILIAS\\User\\Setup\\DBUpdateSteps10',1,'2025-07-18 06:53:06.854129','2025-07-18 06:53:06.854907'),('ILIAS\\User\\Setup\\DBUpdateSteps10',2,'2025-07-18 06:53:06.855188','2025-07-18 06:53:06.863093'),('ILIAS\\User\\Setup\\DBUpdateSteps10',3,'2025-07-18 06:53:06.863347','2025-07-18 06:53:06.863814'),('ILIAS\\User\\Setup\\DBUpdateSteps10',4,'2025-07-18 06:53:06.864112','2025-07-18 06:53:06.864630'),('ILIAS\\User\\Setup\\DBUpdateSteps10',5,'2025-07-18 06:53:06.864916','2025-07-18 06:53:06.868223'),('ILIAS\\Wiki\\Setup\\ilWiki8HotfixDBUpdateSteps',1,'2025-07-18 06:53:07.021380','2025-07-18 06:53:07.021735'),('ILIAS\\Wiki\\Setup\\ilWikiDBUpdateSteps',1,'2023-12-12 16:39:39.203953','2023-12-12 16:39:39.239197'),('ILIAS\\Wiki\\Setup\\ilWikiDBUpdateSteps',2,'2023-12-12 16:39:39.239904','2023-12-12 16:39:39.245378'),('ILIAS\\Wiki\\Setup\\ilWikiDBUpdateSteps',3,'2023-12-12 16:39:39.245988','2023-12-12 16:39:39.259866'),('ILIAS\\Wiki\\Setup\\ilWikiDBUpdateSteps',4,'2023-12-12 16:39:39.260560','2023-12-12 16:39:39.280185'),('ILIAS\\Wiki\\Setup\\ilWikiDBUpdateSteps',5,'2023-12-12 16:39:39.280812','2023-12-12 16:39:39.301898'),('ILIAS\\Wiki\\Setup\\ilWikiDBUpdateSteps',6,'2025-07-18 06:53:07.020517','2025-07-18 06:53:07.020872'),('ILIAS\\Wiki\\Setup\\ilWikiDBUpdateSteps',7,'2026-01-20 16:18:03.693222','2026-01-20 16:18:03.696933'),('ILIAS\\Wiki\\Setup\\ilWikiDBUpdateSteps',8,'2026-01-20 16:18:03.697198','2026-01-20 16:18:03.699688'),('ilIndividualAssessmentRectifyMembersTableDBUpdateSteps',1,'2023-12-12 16:39:40.251946','2023-12-12 16:39:40.257004'),('ilIndividualAssessmentRectifyMembersTableDBUpdateSteps',2,'2023-12-12 16:39:40.257656','2023-12-12 16:39:40.258318'),('ilIntroduceComponentArtifactDBUpdateSteps',1,'2023-12-12 16:39:39.625922','2023-12-12 16:39:39.633814'),('ilIntroduceComponentArtifactDBUpdateSteps',2,'2023-12-12 16:39:39.634423','2023-12-12 16:39:39.642084'),('ilIntroduceComponentArtifactDBUpdateSteps',3,'2023-12-12 16:39:39.642678','2023-12-12 16:39:39.643189'),('ilIntroduceComponentArtifactDBUpdateSteps',4,'2023-12-12 16:39:39.643787','2023-12-12 16:39:39.660457'),('ilIntroduceComponentArtifactDBUpdateSteps',5,'2023-12-12 16:39:39.661137','2023-12-12 16:39:39.667384'),('ilIntroduceComponentArtifactDBUpdateSteps',6,'2023-12-12 16:39:39.668074','2023-12-12 16:39:39.674546'),('ilIntroduceComponentArtifactDBUpdateSteps',7,'2023-12-12 16:39:39.675172','2023-12-12 16:39:39.682053'),('ilIntroduceComponentArtifactDBUpdateSteps',8,'2023-12-12 16:39:39.682739','2023-12-12 16:39:39.688813'),('ilIntroduceEventHandlingArtifactDBUpdateSteps',1,'2023-12-12 16:39:39.789218','2023-12-12 16:39:39.797080'),('ilLearningSequenceRectifyPostConditionsTableDBUpdateSteps',1,'2023-12-12 16:39:40.445426','2023-12-12 16:39:40.460126'),('ilLearningSequenceRectifyPostConditionsTableDBUpdateSteps',2,'2023-12-12 16:39:40.460745','2023-12-12 16:39:40.469096'),('ilLearningSequenceRectifyPostConditionsTableDBUpdateSteps',3,'2023-12-12 16:39:40.469737','2023-12-12 16:39:40.470737'),('ilLearningSequenceRegisterNotificationType',1,'2023-12-12 16:39:40.471781','2023-12-12 16:39:40.472617'),('ilLearningSequenceRegisterNotificationType',2,'2023-12-12 16:39:40.473202','2023-12-12 16:39:40.474079'),('ilLoggingUpdateSteps8',1,'2023-12-12 16:39:40.475061','2023-12-12 16:39:40.475900'),('ilLTIConsumerDatabaseUpdateSteps',1,'2023-12-12 16:39:40.259312','2023-12-12 16:39:40.265030'),('ilLTIConsumerDatabaseUpdateSteps',2,'2023-12-12 16:39:40.265647','2023-12-12 16:39:40.271342'),('ilLTIConsumerDatabaseUpdateSteps',3,'2023-12-12 16:39:40.271999','2023-12-12 16:39:40.277873'),('ilLTIConsumerDatabaseUpdateSteps',4,'2023-12-12 16:39:40.278484','2023-12-12 16:39:40.284092'),('ilLTIConsumerDatabaseUpdateSteps',5,'2023-12-12 16:39:40.284732','2023-12-12 16:39:40.290336'),('ilLTIConsumerDatabaseUpdateSteps',6,'2023-12-12 16:39:40.290982','2023-12-12 16:39:40.296595'),('ilLTIConsumerDatabaseUpdateSteps',7,'2023-12-12 16:39:40.297211','2023-12-12 16:39:40.302845'),('ilLTIConsumerDatabaseUpdateSteps',8,'2023-12-12 16:39:40.303494','2023-12-12 16:39:40.309589'),('ilLTIConsumerDatabaseUpdateSteps',9,'2023-12-12 16:39:40.310207','2023-12-12 16:39:40.315960'),('ilLTIConsumerDatabaseUpdateSteps',10,'2023-12-12 16:39:40.316586','2023-12-12 16:39:40.322306'),('ilLTIConsumerDatabaseUpdateSteps',11,'2023-12-12 16:39:40.322920','2023-12-12 16:39:40.328713'),('ilLTIConsumerDatabaseUpdateSteps',12,'2023-12-12 16:39:40.329332','2023-12-12 16:39:40.335168'),('ilLTIConsumerDatabaseUpdateSteps',13,'2023-12-12 16:39:40.335799','2023-12-12 16:39:40.341702'),('ilLTIConsumerDatabaseUpdateSteps',14,'2023-12-12 16:39:40.342328','2023-12-12 16:39:40.347680'),('ilLTIConsumerDatabaseUpdateSteps',15,'2023-12-12 16:39:40.348311','2023-12-12 16:39:40.368952'),('ilLTIConsumerDatabaseUpdateSteps',16,'2026-01-20 16:18:03.707361','2026-01-20 16:18:03.709985'),('ilLTIDatabaseUpdateSteps',1,'2023-12-12 16:39:40.370010','2023-12-12 16:39:40.376439'),('ilLTIDatabaseUpdateSteps',2,'2023-12-12 16:39:40.377073','2023-12-12 16:39:40.383219'),('ilLTIDatabaseUpdateSteps',3,'2023-12-12 16:39:40.383847','2023-12-12 16:39:40.392769'),('ilLTIDatabaseUpdateSteps',4,'2023-12-12 16:39:40.393390','2023-12-12 16:39:40.399362'),('ilLTIDatabaseUpdateSteps',5,'2023-12-12 16:39:40.399988','2023-12-12 16:39:40.405337'),('ilLTIDatabaseUpdateSteps',6,'2023-12-12 16:39:40.405914','2023-12-12 16:39:40.411265'),('ilLTIDatabaseUpdateSteps',7,'2023-12-12 16:39:40.411887','2023-12-12 16:39:40.417318'),('ilLTIDatabaseUpdateSteps',8,'2023-12-12 16:39:40.418019','2023-12-12 16:39:40.435272'),('ilLTIDatabaseUpdateSteps',9,'2023-12-12 16:39:40.435922','2023-12-12 16:39:40.444322'),('ilMailDatabaseUpdateSteps',1,'2023-12-12 16:39:40.663356','2023-12-12 16:39:40.671293'),('ilMailDatabaseUpdateSteps',2,'2023-12-12 16:39:40.671949','2023-12-12 16:39:40.672918'),('ilMailDatabaseUpdateSteps',3,'2023-12-12 16:39:40.673495','2023-12-12 16:39:40.674173'),('ilMailDatabaseUpdateSteps',4,'2023-12-12 16:39:40.674772','2023-12-12 16:39:40.675455'),('ilMailDatabaseUpdateSteps',5,'2023-12-12 16:39:40.676087','2023-12-12 16:39:40.686900'),('ilMailDatabaseUpdateSteps',6,'2023-12-12 16:39:40.687535','2023-12-12 16:39:40.693141'),('ilMailDatabaseUpdateSteps',7,'2023-12-12 16:39:40.693741','2023-12-12 16:39:40.699091'),('ilMailDatabaseUpdateSteps',8,'2023-12-12 16:39:40.699748','2023-12-12 16:39:40.705271'),('ilMailDatabaseUpdateSteps',9,'2023-12-12 16:39:40.705882','2023-12-12 16:39:40.711450'),('ilMailDatabaseUpdateSteps',10,'2023-12-12 16:39:40.712067','2023-12-12 16:39:40.717425'),('ilMailDatabaseUpdateSteps',11,'2023-12-12 16:39:40.718029','2023-12-12 16:39:40.729740'),('ilMailDatabaseUpdateSteps',12,'2023-12-12 16:39:40.730356','2023-12-12 16:39:40.731892'),('ilMailDatabaseUpdateSteps',13,'2025-07-18 06:53:07.320136','2025-07-18 06:53:07.320874'),('ilMailDatabaseUpdateSteps',14,'2025-07-18 06:53:07.321140','2025-07-18 06:53:07.321866'),('ilMailDatabaseUpdateSteps',15,'2025-07-18 06:53:07.322155','2025-07-18 06:53:07.323038'),('ilMDControlledVocabsUpdateSteps',1,'2025-07-18 06:53:06.905932','2025-07-18 06:53:06.909534'),('ilMDControlledVocabsUpdateSteps',2,'2025-07-18 06:53:06.909878','2025-07-18 06:53:06.914414'),('ilMDControlledVocabsUpdateSteps',3,'2025-07-18 06:53:06.914661','2025-07-18 06:53:06.918434'),('ilMDControlledVocabsUpdateSteps',4,'2025-07-18 06:53:06.918733','2025-07-18 06:53:06.948116'),('ilMDControlledVocabsUpdateSteps',5,'2025-07-18 06:53:06.948531','2025-07-18 06:53:06.984897'),('ilMDControlledVocabsUpdateSteps',6,'2025-07-18 06:53:06.985268','2025-07-18 06:53:06.989267'),('ilMDControlledVocabsUpdateSteps',7,'2025-07-18 06:53:06.989581','2025-07-18 06:53:06.990339'),('ilMDControlledVocabsUpdateSteps',8,'2025-07-18 06:53:06.990632','2025-07-18 06:53:07.019696'),('ilMDCopyrightUpdateSteps',1,'2023-12-12 16:39:40.621835','2023-12-12 16:39:40.627401'),('ilMDCopyrightUpdateSteps',2,'2023-12-12 16:39:40.628041','2023-12-12 16:39:40.633497'),('ilMDCopyrightUpdateSteps',3,'2023-12-12 16:39:40.634103','2023-12-12 16:39:40.639372'),('ilMDCopyrightUpdateSteps',4,'2023-12-12 16:39:40.639987','2023-12-12 16:39:40.645401'),('ilMDCopyrightUpdateSteps',5,'2023-12-12 16:39:40.645992','2023-12-12 16:39:40.651340'),('ilMDCopyrightUpdateSteps',6,'2023-12-12 16:39:40.651967','2023-12-12 16:39:40.657337'),('ilMDCopyrightUpdateSteps',7,'2023-12-12 16:39:40.658051','2023-12-12 16:39:40.659947'),('ilMDCopyrightUpdateSteps',8,'2023-12-12 16:39:40.660599','2023-12-12 16:39:40.662327'),('ilMDCopyrightUpdateSteps',9,'2025-07-18 06:53:06.898718','2025-07-18 06:53:06.899009'),('ilMDCopyrightUpdateSteps',10,'2025-07-18 06:53:06.899255','2025-07-18 06:53:06.899768'),('ilMDCopyrightUpdateSteps',11,'2025-07-18 06:53:06.900018','2025-07-18 06:53:06.900550'),('ilMDCopyrightUpdateSteps',12,'2025-07-18 06:53:06.900819','2025-07-18 06:53:06.901218'),('ilMDLOMUpdateSteps',1,'2023-12-12 16:39:40.476845','2023-12-12 16:39:40.482604'),('ilMDLOMUpdateSteps',2,'2023-12-12 16:39:40.483210','2023-12-12 16:39:40.493505'),('ilMDLOMUpdateSteps',3,'2023-12-12 16:39:40.494133','2023-12-12 16:39:40.504527'),('ilMDLOMUpdateSteps',4,'2023-12-12 16:39:40.505181','2023-12-12 16:39:40.515657'),('ilMDLOMUpdateSteps',5,'2023-12-12 16:39:40.516306','2023-12-12 16:39:40.526976'),('ilMDLOMUpdateSteps',6,'2023-12-12 16:39:40.527629','2023-12-12 16:39:40.542589'),('ilMDLOMUpdateSteps',7,'2023-12-12 16:39:40.543237','2023-12-12 16:39:40.558219'),('ilMDLOMUpdateSteps',8,'2023-12-12 16:39:40.558863','2023-12-12 16:39:40.573725'),('ilMDLOMUpdateSteps',9,'2023-12-12 16:39:40.574348','2023-12-12 16:39:40.589676'),('ilMDLOMUpdateSteps',10,'2023-12-12 16:39:40.590295','2023-12-12 16:39:40.605243'),('ilMDLOMUpdateSteps',11,'2023-12-12 16:39:40.605852','2023-12-12 16:39:40.620681'),('ilMDUpdateSteps10',1,'2025-07-18 06:53:06.901643','2025-07-18 06:53:06.905399'),('ilMigrateStudyProgrammeCertificateProviderDBUpdateSteps',1,'2025-07-18 06:53:07.313584','2025-07-18 06:53:07.313812'),('ilNotificationUpdateSteps',1,'2023-12-12 16:39:40.745514','2023-12-12 16:39:40.746045'),('ilNotificationUpdateSteps',2,'2023-12-12 16:39:40.746642','2023-12-12 16:39:40.747782'),('ilNotificationUpdateSteps',3,'2023-12-12 16:39:40.748371','2023-12-12 16:39:40.749597'),('ilNotificationUpdateSteps',4,'2023-12-12 16:39:40.750183','2023-12-12 16:39:40.751779'),('ilNotificationUpdateSteps',5,'2023-12-12 16:39:40.752382','2023-12-12 16:39:40.753632'),('ilNotificationUpdateSteps',6,'2023-12-12 16:39:40.754372','2023-12-12 16:39:40.755632'),('ilNotificationUpdateSteps',7,'2023-12-12 16:39:40.756273','2023-12-12 16:39:40.757139'),('ilNotificationUpdateSteps',8,'2023-12-12 16:39:40.757727','2023-12-12 16:39:40.764151'),('ilNotificationUpdateSteps',9,'2023-12-12 16:39:40.764798','2023-12-12 16:39:40.766089'),('ilNotificationUpdateSteps',10,'2023-12-12 16:39:40.766605','2023-12-12 16:39:40.774578'),('ilNotificationUpdateSteps',11,'2023-12-12 16:39:40.775108','2023-12-12 16:39:40.776339'),('ilObjCloudModuleProgressTableUpdateSteps',1,'2023-12-12 16:39:40.777271','2023-12-12 16:39:40.778064'),('ilPDFGenerationDB90',1,'2023-12-12 16:39:40.778896','2023-12-12 16:39:40.789544'),('ilPDFGenerationDB90',2,'2023-12-12 16:39:40.790049','2023-12-12 16:39:40.799836'),('ilPDFGenerationDB90',3,'2023-12-12 16:39:40.800336','2023-12-12 16:39:40.809509'),('ilPDFGenerationDB90',4,'2023-12-12 16:39:40.810009','2023-12-12 16:39:40.819202'),('ilPDFGenerationDB90',5,'2023-12-12 16:39:40.819725','2023-12-12 16:39:40.828889'),('ilPDFGenerationDB90',6,'2023-12-12 16:39:40.829380','2023-12-12 16:39:40.830736'),('ilPDFGenerationDB90',7,'2023-12-12 16:39:40.831240','2023-12-12 16:39:40.832631'),('ilPDFGenerationDB90',8,'2023-12-12 16:39:40.833116','2023-12-12 16:39:40.834456'),('ilPDFGenerationDB90',9,'2023-12-12 16:39:40.834934','2023-12-12 16:39:40.836311'),('ilPDFGenerationDB90',10,'2023-12-12 16:39:40.836855','2023-12-12 16:39:40.838152'),('ilPDFGenerationDB90',11,'2023-12-12 16:39:40.838623','2023-12-12 16:39:40.839346'),('ilPDFGenerationDB90',12,'2023-12-12 16:39:40.839825','2023-12-12 16:39:40.840539'),('ilPDFGenerationDB90',13,'2023-12-12 16:39:40.841100','2023-12-12 16:39:40.842378'),('ilPDFGenerationDB90',14,'2023-12-12 16:39:40.842860','2023-12-12 16:39:40.843572'),('ilRadiusDBUpdateSteps',1,'2023-12-12 16:39:40.844445','2023-12-12 16:39:40.844895'),('ilRepository9DBUpdateSteps',1,'2025-07-18 06:53:07.316387','2025-07-18 06:53:07.316726'),('ilResourceStorageDB80',1,'2023-12-12 16:39:38.338173','2023-12-12 16:39:38.367464'),('ilResourceStorageDB80',2,'2023-12-12 16:39:38.368013','2023-12-12 16:39:38.388821'),('ilResourceStorageDB80',3,'2023-12-12 16:39:38.389366','2023-12-12 16:39:38.429636'),('ilResourceStorageDB80',4,'2023-12-12 16:39:38.430303','2023-12-12 16:39:38.437061'),('ilResourceStorageDB80',5,'2023-12-12 16:39:38.437660','2023-12-12 16:39:38.471262'),('ilResourceStorageDB80',6,'2023-12-12 16:39:38.471788','2023-12-12 16:39:38.519138'),('ilResourceStorageDB80',7,'2023-12-12 16:39:38.519862','2023-12-12 16:39:38.526648'),('ilResourceStorageDB80',8,'2023-12-12 16:39:38.527269','2023-12-12 16:39:38.556170'),('ilResourceStorageDB80',9,'2023-12-12 16:39:38.556806','2023-12-12 16:39:38.566584'),('ilResourceStorageDB80',10,'2023-12-12 16:39:38.567201','2023-12-12 16:39:38.580806'),('ilResourceStorageDB80',11,'2023-12-12 16:39:38.581452','2023-12-12 16:39:38.598519'),('ilResourceStorageDB80',12,'2023-12-12 16:39:38.599143','2023-12-12 16:39:38.604883'),('ilResourceStorageDB80',13,'2025-07-18 06:53:06.433097','2025-07-18 06:53:06.437945'),('ilResourceStorageDB90',1,'2023-12-12 16:39:39.951730','2023-12-12 16:39:39.994214'),('ilResourceStorageDB90',2,'2023-12-12 16:39:39.994875','2023-12-12 16:39:40.021210'),('ilResourceStorageDB90',3,'2023-12-12 16:39:40.021888','2023-12-12 16:39:40.027049'),('ilResourceStorageDB90',4,'2023-12-12 16:39:40.027697','2023-12-12 16:39:40.032367'),('ilScorm2004DatabaseUpdateSteps',1,'2025-11-04 16:18:51.922597','2025-11-04 16:18:51.925280'),('ilScorm2004DatabaseUpdateSteps',2,'2025-11-04 16:18:51.925565','2025-11-04 16:18:51.931400'),('ilScorm2004DatabaseUpdateSteps',3,'2026-03-10 16:31:24.633455','2026-03-10 16:31:24.637422'),('ilScormAiccDatabaseUpdateSteps',1,'2024-01-31 14:38:25.408514','2024-01-31 14:38:25.417677'),('ilSessionDBUpdateSteps9',1,'2023-12-12 16:39:40.848750','2023-12-12 16:39:40.854713'),('ilSessionDBUpdateSteps9',2,'2023-12-12 16:39:40.855241','2023-12-12 16:39:40.869825'),('ilSkillDBUpdateSteps',1,'2023-12-12 16:39:40.893060','2023-12-12 16:39:40.913834'),('ilSkillDBUpdateSteps',2,'2023-12-12 16:39:40.914360','2023-12-12 16:39:40.919452'),('ilSkillDBUpdateSteps',3,'2023-12-12 16:39:40.919946','2023-12-12 16:39:40.924695'),('ilSkillDBUpdateSteps',4,'2023-12-12 16:39:40.925205','2023-12-12 16:39:40.925597'),('ilSkillDBUpdateSteps',5,'2023-12-12 16:39:40.926110','2023-12-12 16:39:40.926514'),('ilSkillDBUpdateSteps',6,'2023-12-12 16:39:40.927018','2023-12-12 16:39:40.927831'),('ilSkillDBUpdateSteps',7,'2023-12-12 16:39:40.928349','2023-12-12 16:39:40.929305'),('ilSkillDBUpdateSteps',8,'2023-12-12 16:39:40.929848','2023-12-12 16:39:40.935168'),('ilSkillDBUpdateSteps',9,'2023-12-12 16:39:40.935805','2023-12-12 16:39:40.936593'),('ilSkillDBUpdateSteps',10,'2023-12-12 16:39:40.937203','2023-12-12 16:39:40.944921'),('ilSkillDBUpdateSteps',11,'2023-12-12 16:39:40.945559','2023-12-12 16:39:40.957641'),('ilSoapWsdlPathUpdateStep',1,'2025-07-18 06:53:07.083503','2025-07-18 06:53:07.084316'),('ilStudyProgrammeAssignmentTableUpdateSteps',1,'2023-12-12 16:39:40.978569','2023-12-12 16:39:40.986575'),('ilStudyProgrammeAutoCategoryTableUpdateSteps',1,'2023-12-12 16:39:41.008416','2023-12-12 16:39:41.014561'),('ilStudyProgrammeAutoMembershipTableUpdateSteps',1,'2025-07-18 06:53:07.314262','2025-07-18 06:53:07.315808'),('ilStudyProgrammePCStatusInfoUpdateSteps',1,'2023-12-12 16:39:41.015560','2023-12-12 16:39:41.016387'),('ilStudyProgrammeProgressTableUpdateSteps',1,'2023-12-12 16:39:40.958801','2023-12-12 16:39:40.964559'),('ilStudyProgrammeProgressTableUpdateSteps',2,'2023-12-12 16:39:40.965178','2023-12-12 16:39:40.971470'),('ilStudyProgrammeProgressTableUpdateSteps',3,'2023-12-12 16:39:40.972111','2023-12-12 16:39:40.977513'),('ilStudyProgrammeSettingsTableUpdateSteps',1,'2023-12-12 16:39:40.987952','2023-12-12 16:39:40.993671'),('ilStudyProgrammeSettingsTableUpdateSteps',2,'2023-12-12 16:39:40.994296','2023-12-12 16:39:41.007392'),('ilStudyProgrammeUDFDefinitionUpdateSteps',1,'2023-12-12 16:39:41.017295','2023-12-12 16:39:41.022663'),('ilTest9DBUpdateSteps',1,'2023-12-12 16:39:41.096769','2023-12-12 16:39:41.103656'),('ilTest9DBUpdateSteps',2,'2023-12-12 16:39:41.104286','2023-12-12 16:39:41.115799'),('ilTest9DBUpdateSteps',3,'2023-12-12 16:39:41.116433','2023-12-12 16:39:41.118700'),('ilTest9DBUpdateSteps',4,'2023-12-12 16:39:41.119314','2023-12-12 16:39:41.132294'),('ilTest9DBUpdateSteps',5,'2023-12-12 16:39:41.132920','2023-12-12 16:39:41.173231'),('ilTest9DBUpdateSteps',6,'2023-12-12 16:39:41.173872','2023-12-12 16:39:41.194216'),('ilTest9DBUpdateSteps',7,'2023-12-12 16:39:41.194841','2023-12-12 16:39:41.227543'),('ilTest9DBUpdateSteps',8,'2023-12-12 16:39:41.228136','2023-12-12 16:39:41.233772'),('ilTest9DBUpdateSteps',9,'2023-12-12 16:39:41.234280','2023-12-12 16:39:41.240277'),('ilTest9DBUpdateSteps',10,'2023-12-12 16:39:41.240874','2023-12-12 16:39:41.247449'),('ilTest9DBUpdateSteps',11,'2023-12-12 16:39:41.248082','2023-12-12 16:39:41.254525'),('ilTest9DBUpdateSteps',12,'2023-12-12 16:39:41.255153','2023-12-12 16:39:41.256499'),('ilTest9DBUpdateSteps',13,'2023-12-12 16:39:41.257140','2023-12-12 16:39:41.270051'),('ilTest9DBUpdateSteps',14,'2023-12-12 16:39:41.270683','2023-12-12 16:39:41.282114'),('ilTest9DBUpdateSteps',15,'2023-12-12 16:39:41.282746','2023-12-12 16:39:41.289702'),('ilTest9DBUpdateSteps',16,'2023-12-12 16:39:41.290328','2023-12-12 16:39:41.295496'),('ilTest9DBUpdateSteps',17,'2023-12-12 16:39:41.296140','2023-12-12 16:39:41.301432'),('ilTest9DBUpdateSteps',18,'2023-12-12 16:39:41.302072','2023-12-12 16:39:41.307756'),('ilTest9DBUpdateSteps',19,'2024-04-30 15:11:09.036627','2024-04-30 15:11:09.040172'),('ilTestQuestionPool10DBUpdateSteps',1,'2025-07-18 06:53:07.358883','2025-07-18 06:53:07.373053'),('ilTestQuestionPool10DBUpdateSteps',2,'2025-07-18 06:53:07.373304','2025-07-18 06:53:07.375092'),('ilTestQuestionPool80DBUpdateSteps',1,'2023-12-12 16:39:41.023770','2023-12-12 16:39:41.025028'),('ilTestQuestionPool80DBUpdateSteps',2,'2023-12-12 16:39:41.025620','2023-12-12 16:39:41.031146'),('ilTestQuestionPool80DBUpdateSteps',3,'2023-12-12 16:39:41.031863','2023-12-12 16:39:41.038435'),('ilTestQuestionPool80DBUpdateSteps',4,'2023-12-12 16:39:41.039062','2023-12-12 16:39:41.045485'),('ilTestQuestionPool80DBUpdateSteps',5,'2023-12-12 16:39:41.046098','2023-12-12 16:39:41.059436'),('ilTestQuestionPool80DBUpdateSteps',6,'2023-12-12 16:39:41.060098','2023-12-12 16:39:41.065553'),('ilTestQuestionPool80DBUpdateSteps',7,'2023-12-12 16:39:41.066180','2023-12-12 16:39:41.071725'),('ilTestQuestionPool9DBUpdateSteps',1,'2023-12-12 16:39:41.072787','2023-12-12 16:39:41.078929'),('ilTestQuestionPool9DBUpdateSteps',2,'2023-12-12 16:39:41.079544','2023-12-12 16:39:41.085869'),('ilTestQuestionPool9DBUpdateSteps',3,'2023-12-12 16:39:41.086494','2023-12-12 16:39:41.088653'),('ilTestQuestionPool9DBUpdateSteps',4,'2023-12-12 16:39:41.089278','2023-12-12 16:39:41.095717'),('ilTestQuestionPool9DBUpdateSteps',5,'2025-07-18 06:53:07.350483','2025-07-18 06:53:07.353698'),('ilTestQuestionPool9DBUpdateSteps',6,'2025-07-18 06:53:07.353984','2025-07-18 06:53:07.356064'),('ilTestQuestionPool9DBUpdateSteps',7,'2025-07-18 06:53:07.356321','2025-07-18 06:53:07.358415'),('ilTrackingUpdateSteps9',1,'2025-07-18 06:53:06.849847','2025-07-18 06:53:06.853560'),('ilTreeDBUpdateSteps8',1,'2023-12-12 16:39:41.308875','2023-12-12 16:39:41.315183'),('ilUser8DBUpdateSteps',1,'2023-12-12 16:39:41.372439','2023-12-12 16:39:41.392529'),('ilUser8DBUpdateSteps',2,'2023-12-12 16:39:41.393125','2023-12-12 16:39:41.414590'),('ilUser8DBUpdateSteps',3,'2023-12-12 16:39:41.415252','2023-12-12 16:39:41.420387'),('ilUser8DBUpdateSteps',4,'2024-01-31 14:38:25.421546','2024-01-31 14:38:25.426800'),('ilUserDB90',1,'2023-12-12 16:39:41.421460','2023-12-12 16:39:41.427774'),('ilUserDB90',2,'2023-12-12 16:39:41.428399','2023-12-12 16:39:41.440313'),('ilUserDB90',3,'2023-12-12 16:39:41.441020','2023-12-12 16:39:41.446411'),('ilUserDB90',4,'2023-12-12 16:39:41.447095','2023-12-12 16:39:41.447652'),('ilUserDB90',5,'2023-12-12 16:39:41.448240','2023-12-12 16:39:41.453864'),('ilUserDB90',6,'2023-12-12 16:39:41.454487','2023-12-12 16:39:41.459460'),('ilUserDB90',7,'2023-12-12 16:39:41.460101','2023-12-12 16:39:41.470891'),('ilUserDB90',8,'2024-01-31 14:38:25.427561','2024-01-31 14:38:25.428274'),('ilUserDB90',9,'2024-04-30 15:11:09.040853','2024-04-30 15:11:09.041154'),('ilWebResourceDBUpdateSteps',1,'2023-12-12 16:39:41.472042','2023-12-12 16:39:41.478899'),('ilWebResourceDBUpdateSteps',2,'2025-07-18 06:53:06.868758','2025-07-18 06:53:06.874080'),('ilWebResourceDropValidSteps',1,'2023-12-12 16:39:41.479938','2023-12-12 16:39:41.486502'),('ilWebResourceDropValidSteps',2,'2023-12-12 16:39:41.487110','2023-12-12 16:39:41.493529'),('ilWebResourceDropValidSteps',3,'2023-12-12 16:39:41.494136','2023-12-12 16:39:41.500293'),('ilWebResourceDropValidSteps',4,'2023-12-12 16:39:41.500904','2023-12-12 16:39:41.502972'),('ilWOPIDB100',1,'2025-07-18 06:53:07.291500','2025-07-18 06:53:07.293391'),('ilWOPIDB90',1,'2023-12-12 16:39:38.616248','2023-12-12 16:39:38.629801'),('ilWOPIDB90',2,'2023-12-12 16:39:38.630407','2023-12-12 16:39:38.650076'),('ilWOPIDB90',3,'2025-07-18 06:53:06.427551','2025-07-18 06:53:06.429874'),('ilWOPIDB90',4,'2025-07-18 06:53:06.430127','2025-07-18 06:53:06.432128'),('ilWorkflowEngine9DBUpdateSteps',1,'2023-12-12 16:39:41.554740','2023-12-12 16:39:41.555315'),('ilWorkflowEngine9DBUpdateSteps',2,'2023-12-12 16:39:41.555897','2023-12-12 16:39:41.595930'),('ilWorkflowEngine9DBUpdateSteps',3,'2023-12-12 16:39:41.596587','2023-12-12 16:39:41.597086'),('ilWorkflowEngine9DBUpdateSteps',4,'2023-12-12 16:39:41.597674','2023-12-12 16:39:41.601575'),('LSODropActivationDBUpdateSteps',1,'2025-11-04 16:18:51.939250','2025-11-04 16:18:51.943824'),('MigrateCourseCertificateProviderDBUpdateSteps',1,'2025-07-18 06:53:07.346853','2025-07-18 06:53:07.347106'),('MigrateExerciseCertificateProviderDBUpdateSteps',1,'2025-07-18 06:53:07.347534','2025-07-18 06:53:07.347742');
/*!40000 ALTER TABLE `il_db_steps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_data`
--

DROP TABLE IF EXISTS `il_dcl_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_data` (
  `id` int NOT NULL DEFAULT '0',
  `is_online` tinyint DEFAULT NULL,
  `rating` tinyint DEFAULT NULL,
  `public_notes` tinyint DEFAULT NULL,
  `approval` tinyint DEFAULT NULL,
  `notification` tinyint DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_data`
--

LOCK TABLES `il_dcl_data` WRITE;
/*!40000 ALTER TABLE `il_dcl_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_data_seq`
--

DROP TABLE IF EXISTS `il_dcl_data_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_data_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_data_seq`
--

LOCK TABLES `il_dcl_data_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_data_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_data_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_datatype`
--

DROP TABLE IF EXISTS `il_dcl_datatype`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_datatype` (
  `id` int NOT NULL DEFAULT '0',
  `title` varchar(256) DEFAULT NULL,
  `storage_location` int NOT NULL DEFAULT '0',
  `sort` smallint DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_datatype`
--

LOCK TABLES `il_dcl_datatype` WRITE;
/*!40000 ALTER TABLE `il_dcl_datatype` DISABLE KEYS */;
INSERT INTO `il_dcl_datatype` VALUES (1,'number',2,20),(2,'text',1,0),(3,'reference',1,80),(4,'boolean',2,30),(5,'date',3,40),(7,'rating',0,100),(8,'ilias_reference',2,90),(9,'mob',2,60),(11,'formula',0,110),(14,'text_selection',1,10),(15,'date_selection',1,50),(16,'file',1,75),(17,'copy',1,85);
/*!40000 ALTER TABLE `il_dcl_datatype` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_datatype_prop`
--

DROP TABLE IF EXISTS `il_dcl_datatype_prop`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_datatype_prop` (
  `id` int NOT NULL DEFAULT '0',
  `datatype_id` int DEFAULT NULL,
  `title` varchar(256) DEFAULT NULL,
  `inputformat` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_datatype_prop`
--

LOCK TABLES `il_dcl_datatype_prop` WRITE;
/*!40000 ALTER TABLE `il_dcl_datatype_prop` DISABLE KEYS */;
INSERT INTO `il_dcl_datatype_prop` VALUES (1,2,'length',1),(2,2,'regex',2),(3,3,'table_id',1),(4,2,'url',4),(5,2,'text_area',4),(6,3,'reference_link',4),(7,9,'width',1),(8,9,'height',1),(9,8,'learning_progress',4),(10,8,'ILIAS_reference_link',4),(11,3,'multiple_selection',4),(12,11,'expression',2),(13,8,'display_action_menu',4),(14,2,'link_detail_page',4),(15,9,'link_detail_page',4);
/*!40000 ALTER TABLE `il_dcl_datatype_prop` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_field`
--

DROP TABLE IF EXISTS `il_dcl_field`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_field` (
  `id` int NOT NULL DEFAULT '0',
  `table_id` int NOT NULL DEFAULT '0',
  `title` varchar(256) DEFAULT NULL,
  `description` longtext,
  `datatype_id` int NOT NULL DEFAULT '0',
  `is_unique` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`datatype_id`),
  KEY `i2_idx` (`table_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_field`
--

LOCK TABLES `il_dcl_field` WRITE;
/*!40000 ALTER TABLE `il_dcl_field` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_field` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_field_prop`
--

DROP TABLE IF EXISTS `il_dcl_field_prop`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_field_prop` (
  `id` bigint NOT NULL DEFAULT '0',
  `field_id` bigint NOT NULL DEFAULT '0',
  `name` varchar(4000) NOT NULL DEFAULT '',
  `value` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`id`,`field_id`),
  KEY `i2_idx` (`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_field_prop`
--

LOCK TABLES `il_dcl_field_prop` WRITE;
/*!40000 ALTER TABLE `il_dcl_field_prop` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_field_prop` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_field_prop_seq`
--

DROP TABLE IF EXISTS `il_dcl_field_prop_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_field_prop_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_field_prop_seq`
--

LOCK TABLES `il_dcl_field_prop_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_field_prop_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_field_prop_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_field_seq`
--

DROP TABLE IF EXISTS `il_dcl_field_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_field_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_field_seq`
--

LOCK TABLES `il_dcl_field_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_field_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_field_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_record`
--

DROP TABLE IF EXISTS `il_dcl_record`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_record` (
  `id` int NOT NULL DEFAULT '0',
  `table_id` int NOT NULL DEFAULT '0',
  `create_date` datetime DEFAULT NULL,
  `last_update` datetime DEFAULT NULL,
  `owner` int NOT NULL DEFAULT '0',
  `last_edit_by` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`table_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_record`
--

LOCK TABLES `il_dcl_record` WRITE;
/*!40000 ALTER TABLE `il_dcl_record` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_record` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_record_field`
--

DROP TABLE IF EXISTS `il_dcl_record_field`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_record_field` (
  `id` int NOT NULL DEFAULT '0',
  `record_id` int NOT NULL DEFAULT '0',
  `field_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`record_id`),
  KEY `i2_idx` (`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_record_field`
--

LOCK TABLES `il_dcl_record_field` WRITE;
/*!40000 ALTER TABLE `il_dcl_record_field` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_record_field` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_record_field_seq`
--

DROP TABLE IF EXISTS `il_dcl_record_field_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_record_field_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_record_field_seq`
--

LOCK TABLES `il_dcl_record_field_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_record_field_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_record_field_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_record_seq`
--

DROP TABLE IF EXISTS `il_dcl_record_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_record_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_record_seq`
--

LOCK TABLES `il_dcl_record_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_record_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_record_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_sel_opts`
--

DROP TABLE IF EXISTS `il_dcl_sel_opts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_sel_opts` (
  `id` bigint NOT NULL,
  `field_id` bigint NOT NULL,
  `opt_id` bigint NOT NULL,
  `sorting` bigint NOT NULL,
  `value` varchar(4000) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`field_id`),
  KEY `i2_idx` (`opt_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_sel_opts`
--

LOCK TABLES `il_dcl_sel_opts` WRITE;
/*!40000 ALTER TABLE `il_dcl_sel_opts` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_sel_opts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_sel_opts_seq`
--

DROP TABLE IF EXISTS `il_dcl_sel_opts_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_sel_opts_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_sel_opts_seq`
--

LOCK TABLES `il_dcl_sel_opts_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_sel_opts_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_sel_opts_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_stloc1_default`
--

DROP TABLE IF EXISTS `il_dcl_stloc1_default`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_stloc1_default` (
  `id` int NOT NULL,
  `tview_set_id` int DEFAULT NULL,
  `value` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_stloc1_default`
--

LOCK TABLES `il_dcl_stloc1_default` WRITE;
/*!40000 ALTER TABLE `il_dcl_stloc1_default` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_stloc1_default` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_stloc1_default_seq`
--

DROP TABLE IF EXISTS `il_dcl_stloc1_default_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_stloc1_default_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_stloc1_default_seq`
--

LOCK TABLES `il_dcl_stloc1_default_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_stloc1_default_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_stloc1_default_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_stloc1_value`
--

DROP TABLE IF EXISTS `il_dcl_stloc1_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_stloc1_value` (
  `id` int NOT NULL DEFAULT '0',
  `record_field_id` int NOT NULL DEFAULT '0',
  `value` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`record_field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_stloc1_value`
--

LOCK TABLES `il_dcl_stloc1_value` WRITE;
/*!40000 ALTER TABLE `il_dcl_stloc1_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_stloc1_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_stloc1_value_seq`
--

DROP TABLE IF EXISTS `il_dcl_stloc1_value_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_stloc1_value_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_stloc1_value_seq`
--

LOCK TABLES `il_dcl_stloc1_value_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_stloc1_value_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_stloc1_value_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_stloc2_default`
--

DROP TABLE IF EXISTS `il_dcl_stloc2_default`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_stloc2_default` (
  `id` int NOT NULL,
  `tview_set_id` int DEFAULT NULL,
  `value` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_stloc2_default`
--

LOCK TABLES `il_dcl_stloc2_default` WRITE;
/*!40000 ALTER TABLE `il_dcl_stloc2_default` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_stloc2_default` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_stloc2_default_seq`
--

DROP TABLE IF EXISTS `il_dcl_stloc2_default_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_stloc2_default_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_stloc2_default_seq`
--

LOCK TABLES `il_dcl_stloc2_default_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_stloc2_default_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_stloc2_default_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_stloc2_value`
--

DROP TABLE IF EXISTS `il_dcl_stloc2_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_stloc2_value` (
  `id` int NOT NULL DEFAULT '0',
  `record_field_id` int NOT NULL DEFAULT '0',
  `value` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`record_field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_stloc2_value`
--

LOCK TABLES `il_dcl_stloc2_value` WRITE;
/*!40000 ALTER TABLE `il_dcl_stloc2_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_stloc2_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_stloc2_value_seq`
--

DROP TABLE IF EXISTS `il_dcl_stloc2_value_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_stloc2_value_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_stloc2_value_seq`
--

LOCK TABLES `il_dcl_stloc2_value_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_stloc2_value_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_stloc2_value_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_stloc3_default`
--

DROP TABLE IF EXISTS `il_dcl_stloc3_default`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_stloc3_default` (
  `id` int NOT NULL,
  `tview_set_id` int NOT NULL,
  `value` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_stloc3_default`
--

LOCK TABLES `il_dcl_stloc3_default` WRITE;
/*!40000 ALTER TABLE `il_dcl_stloc3_default` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_stloc3_default` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_stloc3_default_seq`
--

DROP TABLE IF EXISTS `il_dcl_stloc3_default_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_stloc3_default_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_stloc3_default_seq`
--

LOCK TABLES `il_dcl_stloc3_default_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_stloc3_default_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_stloc3_default_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_stloc3_value`
--

DROP TABLE IF EXISTS `il_dcl_stloc3_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_stloc3_value` (
  `id` int NOT NULL DEFAULT '0',
  `record_field_id` int NOT NULL DEFAULT '0',
  `value` datetime DEFAULT '1970-01-01 00:00:00',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`record_field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_stloc3_value`
--

LOCK TABLES `il_dcl_stloc3_value` WRITE;
/*!40000 ALTER TABLE `il_dcl_stloc3_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_stloc3_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_stloc3_value_seq`
--

DROP TABLE IF EXISTS `il_dcl_stloc3_value_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_stloc3_value_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_stloc3_value_seq`
--

LOCK TABLES `il_dcl_stloc3_value_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_stloc3_value_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_stloc3_value_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_table`
--

DROP TABLE IF EXISTS `il_dcl_table`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_table` (
  `id` int NOT NULL DEFAULT '0',
  `obj_id` int NOT NULL DEFAULT '0',
  `title` varchar(256) DEFAULT NULL,
  `add_perm` tinyint NOT NULL DEFAULT '1',
  `edit_perm` tinyint NOT NULL DEFAULT '1',
  `delete_perm` tinyint NOT NULL DEFAULT '1',
  `edit_by_owner` tinyint NOT NULL DEFAULT '1',
  `limited` tinyint NOT NULL DEFAULT '0',
  `limit_start` datetime DEFAULT NULL,
  `limit_end` datetime DEFAULT NULL,
  `is_visible` tinyint NOT NULL DEFAULT '1',
  `export_enabled` tinyint DEFAULT NULL,
  `description` varchar(4000) DEFAULT NULL,
  `default_sort_field_id` varchar(16) NOT NULL DEFAULT '0',
  `default_sort_field_order` varchar(4) NOT NULL DEFAULT 'asc',
  `public_comments` int NOT NULL DEFAULT '0',
  `view_own_records_perm` int NOT NULL DEFAULT '0',
  `delete_by_owner` tinyint NOT NULL DEFAULT '0',
  `save_confirmation` tinyint NOT NULL DEFAULT '0',
  `import_enabled` tinyint NOT NULL DEFAULT '1',
  `table_order` bigint DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_table`
--

LOCK TABLES `il_dcl_table` WRITE;
/*!40000 ALTER TABLE `il_dcl_table` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_table` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_table_seq`
--

DROP TABLE IF EXISTS `il_dcl_table_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_table_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_table_seq`
--

LOCK TABLES `il_dcl_table_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_table_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_table_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_tableview`
--

DROP TABLE IF EXISTS `il_dcl_tableview`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_tableview` (
  `id` bigint NOT NULL DEFAULT '0',
  `table_id` bigint NOT NULL DEFAULT '0',
  `title` varchar(128) NOT NULL DEFAULT '',
  `roles` longtext,
  `description` varchar(128) NOT NULL DEFAULT '',
  `tableview_order` bigint DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `t1_idx` (`table_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_tableview`
--

LOCK TABLES `il_dcl_tableview` WRITE;
/*!40000 ALTER TABLE `il_dcl_tableview` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_tableview` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_tableview_seq`
--

DROP TABLE IF EXISTS `il_dcl_tableview_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_tableview_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_tableview_seq`
--

LOCK TABLES `il_dcl_tableview_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_tableview_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_tableview_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_tfield_set`
--

DROP TABLE IF EXISTS `il_dcl_tfield_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_tfield_set` (
  `id` bigint NOT NULL DEFAULT '0',
  `table_id` bigint NOT NULL DEFAULT '0',
  `field` varchar(128) NOT NULL DEFAULT '',
  `field_order` bigint DEFAULT NULL,
  `exportable` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `t2_idx` (`table_id`,`field`),
  KEY `i3_idx` (`field`),
  KEY `i4_idx` (`table_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_tfield_set`
--

LOCK TABLES `il_dcl_tfield_set` WRITE;
/*!40000 ALTER TABLE `il_dcl_tfield_set` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_tfield_set` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_tfield_set_seq`
--

DROP TABLE IF EXISTS `il_dcl_tfield_set_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_tfield_set_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_tfield_set_seq`
--

LOCK TABLES `il_dcl_tfield_set_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_tfield_set_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_tfield_set_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_tview_set`
--

DROP TABLE IF EXISTS `il_dcl_tview_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_tview_set` (
  `id` bigint NOT NULL DEFAULT '0',
  `tableview_id` bigint NOT NULL DEFAULT '0',
  `field` varchar(128) NOT NULL DEFAULT '',
  `visible` tinyint NOT NULL DEFAULT '0',
  `in_filter` tinyint NOT NULL DEFAULT '0',
  `filter_value` longtext,
  `filter_changeable` tinyint NOT NULL DEFAULT '0',
  `default_value` varchar(255) DEFAULT NULL,
  `required_create` tinyint NOT NULL DEFAULT '0',
  `locked_create` tinyint NOT NULL DEFAULT '0',
  `visible_create` tinyint NOT NULL DEFAULT '1',
  `visible_edit` tinyint NOT NULL DEFAULT '1',
  `required_edit` tinyint NOT NULL DEFAULT '0',
  `locked_edit` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`tableview_id`),
  KEY `i2_idx` (`field`),
  KEY `i3_idx` (`in_filter`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_tview_set`
--

LOCK TABLES `il_dcl_tview_set` WRITE;
/*!40000 ALTER TABLE `il_dcl_tview_set` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_tview_set` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_tview_set_seq`
--

DROP TABLE IF EXISTS `il_dcl_tview_set_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_tview_set_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_tview_set_seq`
--

LOCK TABLES `il_dcl_tview_set_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_tview_set_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_tview_set_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_dcl_view_seq`
--

DROP TABLE IF EXISTS `il_dcl_view_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_dcl_view_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_dcl_view_seq`
--

LOCK TABLES `il_dcl_view_seq` WRITE;
/*!40000 ALTER TABLE `il_dcl_view_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_dcl_view_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_exc_team`
--

DROP TABLE IF EXISTS `il_exc_team`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_exc_team` (
  `id` int NOT NULL DEFAULT '0',
  `ass_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`ass_id`,`user_id`),
  KEY `i1_idx` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_exc_team`
--

LOCK TABLES `il_exc_team` WRITE;
/*!40000 ALTER TABLE `il_exc_team` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_exc_team` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_exc_team_log`
--

DROP TABLE IF EXISTS `il_exc_team_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_exc_team_log` (
  `log_id` int NOT NULL DEFAULT '0',
  `team_id` int NOT NULL DEFAULT '0',
  `user_id` int NOT NULL DEFAULT '0',
  `details` varchar(500) DEFAULT NULL,
  `action` tinyint NOT NULL DEFAULT '0',
  `tstamp` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`log_id`),
  KEY `i1_idx` (`team_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_exc_team_log`
--

LOCK TABLES `il_exc_team_log` WRITE;
/*!40000 ALTER TABLE `il_exc_team_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_exc_team_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_exc_team_log_seq`
--

DROP TABLE IF EXISTS `il_exc_team_log_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_exc_team_log_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_exc_team_log_seq`
--

LOCK TABLES `il_exc_team_log_seq` WRITE;
/*!40000 ALTER TABLE `il_exc_team_log_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_exc_team_log_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_exc_team_seq`
--

DROP TABLE IF EXISTS `il_exc_team_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_exc_team_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_exc_team_seq`
--

LOCK TABLES `il_exc_team_seq` WRITE;
/*!40000 ALTER TABLE `il_exc_team_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_exc_team_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_external_feed_block`
--

DROP TABLE IF EXISTS `il_external_feed_block`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_external_feed_block` (
  `id` int NOT NULL DEFAULT '0',
  `feed_url` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_external_feed_block`
--

LOCK TABLES `il_external_feed_block` WRITE;
/*!40000 ALTER TABLE `il_external_feed_block` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_external_feed_block` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_external_feed_block_seq`
--

DROP TABLE IF EXISTS `il_external_feed_block_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_external_feed_block_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_external_feed_block_seq`
--

LOCK TABLES `il_external_feed_block_seq` WRITE;
/*!40000 ALTER TABLE `il_external_feed_block_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_external_feed_block_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_file_icon`
--

DROP TABLE IF EXISTS `il_file_icon`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_file_icon` (
  `rid` varchar(64) NOT NULL DEFAULT '',
  `active` tinyint DEFAULT '0',
  `is_default_icon` tinyint DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_file_icon`
--

LOCK TABLES `il_file_icon` WRITE;
/*!40000 ALTER TABLE `il_file_icon` DISABLE KEYS */;
INSERT INTO `il_file_icon` VALUES ('d4716447-6bd7-4f15-be54-446400198ce6',1,1),('c14dba51-fe5d-4fb1-8883-c8ffbddb7fe4',1,1),('a36b54b5-bb85-4763-bde7-6541025e0587',1,1),('19b7b6c3-2b68-4629-8b8e-2f7a468981bf',1,1),('22c54806-6581-4b3f-91d7-bc74326da459',1,1),('e44abca3-af85-451d-9cb5-d21d0352a782',1,1),('02b5b775-ff9f-4bb0-bff8-dc4c85baea67',1,1),('b1fcf96f-59e1-4277-9b06-a914aa1e2870',1,1),('e36f661b-440d-4f8d-8851-52c922db3c9e',1,1),('91e0c216-9697-464f-8f18-17eb88695023',1,1),('818d247c-ac46-4a10-a97a-8326c01b9091',1,1),('889d2886-e21f-4925-bcdc-0de92d2adbdc',1,1),('73ffc718-7722-4883-bb1d-8f944779e09e',1,1),('b51ed1b7-d79e-4439-9a5b-070901daa1cc',1,1),('a1938bbe-4b64-4f80-ba13-452c9a530408',1,1),('7fbc2a17-1031-41e1-b58f-bbe72c8d53ee',1,1),('e4b49457-faaa-441f-ac84-97e9fba9dfef',1,1),('57e4c747-9345-425b-b377-324f7b0c2980',1,1),('3005b0c5-1d7f-4c3e-b389-e0bc44f663c8',1,1),('0e4b3e60-84d2-4585-9c9b-821c35a732b6',1,1),('28313850-3c6a-4554-ab02-5f30f6d9cec1',1,1),('90504a48-d7e6-4f78-8d8c-ff6150b6a302',1,1),('1716810d-0e30-4691-96e0-7fc390627939',1,1),('a7f1beb5-f37d-4a3f-97df-0c17f83be326',1,1),('4ae159a1-6568-47f8-b968-b52c58161ab4',1,1),('3455af6e-f057-4f50-9972-39981b789da3',1,1);
/*!40000 ALTER TABLE `il_file_icon` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_file_icon_suffixes`
--

DROP TABLE IF EXISTS `il_file_icon_suffixes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_file_icon_suffixes` (
  `rid` varchar(64) NOT NULL DEFAULT '',
  `suffix` varchar(32) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_file_icon_suffixes`
--

LOCK TABLES `il_file_icon_suffixes` WRITE;
/*!40000 ALTER TABLE `il_file_icon_suffixes` DISABLE KEYS */;
INSERT INTO `il_file_icon_suffixes` VALUES ('d4716447-6bd7-4f15-be54-446400198ce6','avi'),('c14dba51-fe5d-4fb1-8883-c8ffbddb7fe4','bmp'),('a36b54b5-bb85-4763-bde7-6541025e0587','csv'),('19b7b6c3-2b68-4629-8b8e-2f7a468981bf','docx'),('22c54806-6581-4b3f-91d7-bc74326da459','flv'),('e44abca3-af85-451d-9cb5-d21d0352a782','gif'),('02b5b775-ff9f-4bb0-bff8-dc4c85baea67','ico'),('b1fcf96f-59e1-4277-9b06-a914aa1e2870','jpg'),('e36f661b-440d-4f8d-8851-52c922db3c9e','md'),('91e0c216-9697-464f-8f18-17eb88695023','mov'),('818d247c-ac46-4a10-a97a-8326c01b9091','mp3'),('889d2886-e21f-4925-bcdc-0de92d2adbdc','mp4'),('73ffc718-7722-4883-bb1d-8f944779e09e','odp'),('b51ed1b7-d79e-4439-9a5b-070901daa1cc','ods'),('a1938bbe-4b64-4f80-ba13-452c9a530408','odt'),('7fbc2a17-1031-41e1-b58f-bbe72c8d53ee','pdf'),('e4b49457-faaa-441f-ac84-97e9fba9dfef','png'),('57e4c747-9345-425b-b377-324f7b0c2980','pptx'),('3005b0c5-1d7f-4c3e-b389-e0bc44f663c8','rtf'),('0e4b3e60-84d2-4585-9c9b-821c35a732b6','svg'),('28313850-3c6a-4554-ab02-5f30f6d9cec1','tiff'),('90504a48-d7e6-4f78-8d8c-ff6150b6a302','txt'),('1716810d-0e30-4691-96e0-7fc390627939','wav'),('a7f1beb5-f37d-4a3f-97df-0c17f83be326','wma'),('4ae159a1-6568-47f8-b968-b52c58161ab4','xlsx'),('3455af6e-f057-4f50-9972-39981b789da3','xml');
/*!40000 ALTER TABLE `il_file_icon_suffixes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_gc_memcache_server`
--

DROP TABLE IF EXISTS `il_gc_memcache_server`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_gc_memcache_server` (
  `id` bigint NOT NULL DEFAULT '0',
  `status` tinyint DEFAULT NULL,
  `host` varchar(256) DEFAULT NULL,
  `port` bigint DEFAULT NULL,
  `weight` smallint DEFAULT NULL,
  `flush_needed` tinyint DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_gc_memcache_server`
--

LOCK TABLES `il_gc_memcache_server` WRITE;
/*!40000 ALTER TABLE `il_gc_memcache_server` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_gc_memcache_server` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_gc_memcache_server_seq`
--

DROP TABLE IF EXISTS `il_gc_memcache_server_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_gc_memcache_server_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_gc_memcache_server_seq`
--

LOCK TABLES `il_gc_memcache_server_seq` WRITE;
/*!40000 ALTER TABLE `il_gc_memcache_server_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_gc_memcache_server_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_html_block`
--

DROP TABLE IF EXISTS `il_html_block`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_html_block` (
  `id` int NOT NULL DEFAULT '0',
  `content` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_html_block`
--

LOCK TABLES `il_html_block` WRITE;
/*!40000 ALTER TABLE `il_html_block` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_html_block` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_md_cpr_selections`
--

DROP TABLE IF EXISTS `il_md_cpr_selections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_md_cpr_selections` (
  `entry_id` int NOT NULL DEFAULT '0',
  `title` varchar(128) DEFAULT NULL,
  `description` longtext,
  `copyright` longtext,
  `language` char(2) DEFAULT NULL,
  `costs` tinyint NOT NULL DEFAULT '0',
  `cpr_restrictions` tinyint NOT NULL DEFAULT '1',
  `is_default` tinyint NOT NULL DEFAULT '0',
  `outdated` tinyint NOT NULL DEFAULT '0',
  `position` tinyint NOT NULL DEFAULT '0',
  `full_name` longtext,
  `link` longtext,
  `image_link` longtext,
  `alt_text` longtext,
  `migrated` int DEFAULT '0',
  `image_file` longtext,
  PRIMARY KEY (`entry_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_md_cpr_selections`
--

LOCK TABLES `il_md_cpr_selections` WRITE;
/*!40000 ALTER TABLE `il_md_cpr_selections` DISABLE KEYS */;
INSERT INTO `il_md_cpr_selections` VALUES (1,'Attribution Non-commercial No Derivatives (by-nc-nd)','Creative Commons License','<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-nd/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png\" /></a><br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-nd/4.0/\">Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License</a>.','en',0,1,0,0,0,NULL,NULL,NULL,NULL,0,NULL),(2,'Attribution Non-commercial Share Alike (by-nc-sa)','Creative Commons License','<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png\" /></a><br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.','en',0,1,0,0,0,NULL,NULL,NULL,NULL,0,NULL),(3,'Attribution Non-commercial (by-nc)','Creative Commons License','<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc/4.0/88x31.png\" /></a><br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc/4.0/\">Creative Commons Attribution-NonCommercial 4.0 International License</a>.','en',0,1,0,0,0,NULL,NULL,NULL,NULL,0,NULL),(4,'Attribution No Derivatives (by-nd)','Creative Commons License','<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nd/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nd/4.0/88x31.png\" /></a><br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nd/4.0/\">Creative Commons Attribution-NoDerivatives 4.0 International License</a>.','en',0,1,0,0,0,NULL,NULL,NULL,NULL,0,NULL),(5,'Attribution Share Alike (by-sa)','Creative Commons License','<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" /></a><br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Creative Commons Attribution-ShareAlike 4.0 International License</a>.','en',0,1,0,0,0,NULL,NULL,NULL,NULL,0,NULL),(6,'Attribution (by)','Creative Commons License','<a rel=\"license\" href=\"http://creativecommons.org/licenses/by/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by/4.0/88x31.png\" /></a><br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by/4.0/\">Creative Commons Attribution 4.0 International License</a>.','en',0,1,0,0,0,NULL,NULL,NULL,NULL,0,NULL),(7,'All rights reserved','The copyright holder reserves, or holds for their own use, all the rights provided by copyright law.','This work has all rights reserved by the owner.','en',0,1,1,0,0,NULL,NULL,NULL,NULL,0,NULL),(8,'Public Domain','Creative work to which no exclusive intellectual property rights apply.',NULL,NULL,0,1,0,0,1,'Public Domain','http://creativecommons.org/publicdomain/zero/1.0/','https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg','CC0',1,'');
/*!40000 ALTER TABLE `il_md_cpr_selections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_md_cpr_selections_seq`
--

DROP TABLE IF EXISTS `il_md_cpr_selections_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_md_cpr_selections_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_md_cpr_selections_seq`
--

LOCK TABLES `il_md_cpr_selections_seq` WRITE;
/*!40000 ALTER TABLE `il_md_cpr_selections_seq` DISABLE KEYS */;
INSERT INTO `il_md_cpr_selections_seq` VALUES (9);
/*!40000 ALTER TABLE `il_md_cpr_selections_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_md_vocab_contr`
--

DROP TABLE IF EXISTS `il_md_vocab_contr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_md_vocab_contr` (
  `id` int NOT NULL,
  `slot` varchar(64) NOT NULL,
  `source` varchar(64) NOT NULL,
  `active` tinyint NOT NULL DEFAULT '1',
  `custom_input` tinyint NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_md_vocab_contr`
--

LOCK TABLES `il_md_vocab_contr` WRITE;
/*!40000 ALTER TABLE `il_md_vocab_contr` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_md_vocab_contr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_md_vocab_contr_seq`
--

DROP TABLE IF EXISTS `il_md_vocab_contr_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_md_vocab_contr_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_md_vocab_contr_seq`
--

LOCK TABLES `il_md_vocab_contr_seq` WRITE;
/*!40000 ALTER TABLE `il_md_vocab_contr_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_md_vocab_contr_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_md_vocab_contr_vals`
--

DROP TABLE IF EXISTS `il_md_vocab_contr_vals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_md_vocab_contr_vals` (
  `vocab_id` int NOT NULL,
  `value` varchar(255) NOT NULL,
  `label` varchar(255) NOT NULL,
  PRIMARY KEY (`vocab_id`,`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_md_vocab_contr_vals`
--

LOCK TABLES `il_md_vocab_contr_vals` WRITE;
/*!40000 ALTER TABLE `il_md_vocab_contr_vals` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_md_vocab_contr_vals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_md_vocab_inactive`
--

DROP TABLE IF EXISTS `il_md_vocab_inactive`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_md_vocab_inactive` (
  `slot` varchar(64) NOT NULL,
  PRIMARY KEY (`slot`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_md_vocab_inactive`
--

LOCK TABLES `il_md_vocab_inactive` WRITE;
/*!40000 ALTER TABLE `il_md_vocab_inactive` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_md_vocab_inactive` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_media_cast_data`
--

DROP TABLE IF EXISTS `il_media_cast_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_media_cast_data` (
  `id` int NOT NULL DEFAULT '0',
  `is_online` tinyint DEFAULT '0',
  `public_files` tinyint DEFAULT '0',
  `downloadable` tinyint DEFAULT '0',
  `def_access` tinyint DEFAULT '0',
  `sortmode` tinyint DEFAULT '3',
  `viewmode` varchar(20) DEFAULT NULL,
  `autoplaymode` tinyint NOT NULL DEFAULT '0',
  `nr_initial_videos` tinyint NOT NULL DEFAULT '0',
  `new_items_in_lp` tinyint NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_media_cast_data`
--

LOCK TABLES `il_media_cast_data` WRITE;
/*!40000 ALTER TABLE `il_media_cast_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_media_cast_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_media_cast_data_ord`
--

DROP TABLE IF EXISTS `il_media_cast_data_ord`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_media_cast_data_ord` (
  `obj_id` int NOT NULL DEFAULT '0',
  `item_id` int NOT NULL DEFAULT '0',
  `pos` mediumint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`,`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_media_cast_data_ord`
--

LOCK TABLES `il_media_cast_data_ord` WRITE;
/*!40000 ALTER TABLE `il_media_cast_data_ord` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_media_cast_data_ord` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_annotation`
--

DROP TABLE IF EXISTS `il_meta_annotation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_annotation` (
  `meta_annotation_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `entity` longtext,
  `a_date` longtext,
  `description` longtext,
  `description_language` char(2) DEFAULT NULL,
  `a_date_descr` longtext,
  `date_descr_lang` varchar(2) DEFAULT NULL,
  PRIMARY KEY (`meta_annotation_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_annotation`
--

LOCK TABLES `il_meta_annotation` WRITE;
/*!40000 ALTER TABLE `il_meta_annotation` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_annotation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_annotation_seq`
--

DROP TABLE IF EXISTS `il_meta_annotation_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_annotation_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_annotation_seq`
--

LOCK TABLES `il_meta_annotation_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_annotation_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_annotation_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_classification`
--

DROP TABLE IF EXISTS `il_meta_classification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_classification` (
  `meta_classification_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `purpose` varchar(255) DEFAULT NULL,
  `description` varchar(4000) DEFAULT NULL,
  `description_language` char(2) DEFAULT NULL,
  `purpose_src` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`meta_classification_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_classification`
--

LOCK TABLES `il_meta_classification` WRITE;
/*!40000 ALTER TABLE `il_meta_classification` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_classification` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_classification_seq`
--

DROP TABLE IF EXISTS `il_meta_classification_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_classification_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_classification_seq`
--

LOCK TABLES `il_meta_classification_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_classification_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_classification_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_context`
--

DROP TABLE IF EXISTS `il_meta_context`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_context` (
  `meta_context_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `context` varchar(255) DEFAULT NULL,
  `context_src` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`meta_context_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_context`
--

LOCK TABLES `il_meta_context` WRITE;
/*!40000 ALTER TABLE `il_meta_context` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_context` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_context_seq`
--

DROP TABLE IF EXISTS `il_meta_context_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_context_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_context_seq`
--

LOCK TABLES `il_meta_context_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_context_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_context_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_contribute`
--

DROP TABLE IF EXISTS `il_meta_contribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_contribute` (
  `meta_contribute_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(32) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `role` varchar(255) DEFAULT NULL,
  `c_date` varchar(4000) DEFAULT NULL,
  `c_date_descr` longtext,
  `descr_lang` varchar(2) DEFAULT NULL,
  `role_src` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`meta_contribute_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_contribute`
--

LOCK TABLES `il_meta_contribute` WRITE;
/*!40000 ALTER TABLE `il_meta_contribute` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_contribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_contribute_seq`
--

DROP TABLE IF EXISTS `il_meta_contribute_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_contribute_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_contribute_seq`
--

LOCK TABLES `il_meta_contribute_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_contribute_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_contribute_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_coverage`
--

DROP TABLE IF EXISTS `il_meta_coverage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_coverage` (
  `meta_coverage_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `coverage` varchar(4000) DEFAULT NULL,
  `coverage_language` char(2) DEFAULT NULL,
  PRIMARY KEY (`meta_coverage_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_coverage`
--

LOCK TABLES `il_meta_coverage` WRITE;
/*!40000 ALTER TABLE `il_meta_coverage` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_coverage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_coverage_seq`
--

DROP TABLE IF EXISTS `il_meta_coverage_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_coverage_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_coverage_seq`
--

LOCK TABLES `il_meta_coverage_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_coverage_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_coverage_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_description`
--

DROP TABLE IF EXISTS `il_meta_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_description` (
  `meta_description_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `description` longtext,
  `description_language` char(2) DEFAULT NULL,
  PRIMARY KEY (`meta_description_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_description`
--

LOCK TABLES `il_meta_description` WRITE;
/*!40000 ALTER TABLE `il_meta_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_description_seq`
--

DROP TABLE IF EXISTS `il_meta_description_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_description_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_description_seq`
--

LOCK TABLES `il_meta_description_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_description_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_description_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_educational`
--

DROP TABLE IF EXISTS `il_meta_educational`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_educational` (
  `meta_educational_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `interactivity_type` varchar(255) DEFAULT NULL,
  `learning_resource_type` varchar(32) DEFAULT NULL,
  `interactivity_level` varchar(255) DEFAULT NULL,
  `semantic_density` varchar(255) DEFAULT NULL,
  `intended_end_user_role` varchar(16) DEFAULT NULL,
  `context` varchar(16) DEFAULT NULL,
  `difficulty` varchar(255) DEFAULT NULL,
  `typical_learning_time` varchar(4000) DEFAULT NULL,
  `tlt_descr` longtext,
  `tlt_descr_lang` varchar(2) DEFAULT NULL,
  `interactivity_type_src` varchar(64) NOT NULL DEFAULT '',
  `interactivity_level_src` varchar(64) NOT NULL DEFAULT '',
  `semantic_density_src` varchar(64) NOT NULL DEFAULT '',
  `difficulty_src` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`meta_educational_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_educational`
--

LOCK TABLES `il_meta_educational` WRITE;
/*!40000 ALTER TABLE `il_meta_educational` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_educational` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_educational_seq`
--

DROP TABLE IF EXISTS `il_meta_educational_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_educational_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_educational_seq`
--

LOCK TABLES `il_meta_educational_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_educational_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_educational_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_end_usr_role`
--

DROP TABLE IF EXISTS `il_meta_end_usr_role`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_end_usr_role` (
  `meta_end_usr_role_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `intended_end_user_role` varchar(255) DEFAULT NULL,
  `intended_end_user_role_src` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`meta_end_usr_role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_end_usr_role`
--

LOCK TABLES `il_meta_end_usr_role` WRITE;
/*!40000 ALTER TABLE `il_meta_end_usr_role` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_end_usr_role` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_end_usr_role_seq`
--

DROP TABLE IF EXISTS `il_meta_end_usr_role_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_end_usr_role_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_end_usr_role_seq`
--

LOCK TABLES `il_meta_end_usr_role_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_end_usr_role_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_end_usr_role_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_entity`
--

DROP TABLE IF EXISTS `il_meta_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_entity` (
  `meta_entity_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `entity` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`meta_entity_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_entity`
--

LOCK TABLES `il_meta_entity` WRITE;
/*!40000 ALTER TABLE `il_meta_entity` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_entity_seq`
--

DROP TABLE IF EXISTS `il_meta_entity_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_entity_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_entity_seq`
--

LOCK TABLES `il_meta_entity_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_entity_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_entity_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_format`
--

DROP TABLE IF EXISTS `il_meta_format`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_format` (
  `meta_format_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `format` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`meta_format_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`),
  KEY `i2_idx` (`format`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_format`
--

LOCK TABLES `il_meta_format` WRITE;
/*!40000 ALTER TABLE `il_meta_format` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_format` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_format_seq`
--

DROP TABLE IF EXISTS `il_meta_format_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_format_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_format_seq`
--

LOCK TABLES `il_meta_format_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_format_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_format_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_general`
--

DROP TABLE IF EXISTS `il_meta_general`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_general` (
  `meta_general_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `general_structure` varchar(255) DEFAULT NULL,
  `title` varchar(4000) DEFAULT NULL,
  `title_language` char(2) DEFAULT NULL,
  `coverage` varchar(4000) DEFAULT NULL,
  `coverage_language` char(2) DEFAULT NULL,
  `general_aggl` varchar(255) DEFAULT NULL,
  `general_structure_src` varchar(64) NOT NULL DEFAULT '',
  `general_aggl_src` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`meta_general_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_general`
--

LOCK TABLES `il_meta_general` WRITE;
/*!40000 ALTER TABLE `il_meta_general` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_general` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_general_seq`
--

DROP TABLE IF EXISTS `il_meta_general_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_general_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_general_seq`
--

LOCK TABLES `il_meta_general_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_general_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_general_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_identifier`
--

DROP TABLE IF EXISTS `il_meta_identifier`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_identifier` (
  `meta_identifier_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `catalog` varchar(4000) DEFAULT NULL,
  `entry` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`meta_identifier_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_identifier`
--

LOCK TABLES `il_meta_identifier` WRITE;
/*!40000 ALTER TABLE `il_meta_identifier` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_identifier` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_identifier_`
--

DROP TABLE IF EXISTS `il_meta_identifier_`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_identifier_` (
  `meta_identifier__id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `catalog` varchar(4000) DEFAULT NULL,
  `entry` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`meta_identifier__id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_identifier_`
--

LOCK TABLES `il_meta_identifier_` WRITE;
/*!40000 ALTER TABLE `il_meta_identifier_` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_identifier_` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_identifier__seq`
--

DROP TABLE IF EXISTS `il_meta_identifier__seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_identifier__seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_identifier__seq`
--

LOCK TABLES `il_meta_identifier__seq` WRITE;
/*!40000 ALTER TABLE `il_meta_identifier__seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_identifier__seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_identifier_seq`
--

DROP TABLE IF EXISTS `il_meta_identifier_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_identifier_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_identifier_seq`
--

LOCK TABLES `il_meta_identifier_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_identifier_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_identifier_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_keyword`
--

DROP TABLE IF EXISTS `il_meta_keyword`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_keyword` (
  `meta_keyword_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(32) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `keyword` varchar(4000) DEFAULT NULL,
  `keyword_language` char(2) DEFAULT NULL,
  PRIMARY KEY (`meta_keyword_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_keyword`
--

LOCK TABLES `il_meta_keyword` WRITE;
/*!40000 ALTER TABLE `il_meta_keyword` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_keyword` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_keyword_seq`
--

DROP TABLE IF EXISTS `il_meta_keyword_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_keyword_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_keyword_seq`
--

LOCK TABLES `il_meta_keyword_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_keyword_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_keyword_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_language`
--

DROP TABLE IF EXISTS `il_meta_language`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_language` (
  `meta_language_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` char(6) DEFAULT NULL,
  `parent_type` char(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `language` char(2) DEFAULT NULL,
  PRIMARY KEY (`meta_language_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_language`
--

LOCK TABLES `il_meta_language` WRITE;
/*!40000 ALTER TABLE `il_meta_language` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_language` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_language_seq`
--

DROP TABLE IF EXISTS `il_meta_language_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_language_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_language_seq`
--

LOCK TABLES `il_meta_language_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_language_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_language_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_lifecycle`
--

DROP TABLE IF EXISTS `il_meta_lifecycle`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_lifecycle` (
  `meta_lifecycle_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `lifecycle_status` varchar(255) DEFAULT NULL,
  `meta_version` varchar(4000) DEFAULT NULL,
  `version_language` char(2) DEFAULT NULL,
  `lifecycle_status_src` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`meta_lifecycle_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_lifecycle`
--

LOCK TABLES `il_meta_lifecycle` WRITE;
/*!40000 ALTER TABLE `il_meta_lifecycle` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_lifecycle` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_lifecycle_seq`
--

DROP TABLE IF EXISTS `il_meta_lifecycle_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_lifecycle_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_lifecycle_seq`
--

LOCK TABLES `il_meta_lifecycle_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_lifecycle_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_lifecycle_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_location`
--

DROP TABLE IF EXISTS `il_meta_location`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_location` (
  `meta_location_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `location` varchar(4000) DEFAULT NULL,
  `location_type` varchar(16) DEFAULT NULL,
  PRIMARY KEY (`meta_location_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_location`
--

LOCK TABLES `il_meta_location` WRITE;
/*!40000 ALTER TABLE `il_meta_location` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_location` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_location_seq`
--

DROP TABLE IF EXISTS `il_meta_location_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_location_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_location_seq`
--

LOCK TABLES `il_meta_location_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_location_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_location_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_lr_type`
--

DROP TABLE IF EXISTS `il_meta_lr_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_lr_type` (
  `meta_lr_type_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `learning_resource_type` varchar(255) DEFAULT NULL,
  `learning_resource_type_src` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`meta_lr_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_lr_type`
--

LOCK TABLES `il_meta_lr_type` WRITE;
/*!40000 ALTER TABLE `il_meta_lr_type` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_lr_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_lr_type_seq`
--

DROP TABLE IF EXISTS `il_meta_lr_type_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_lr_type_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_lr_type_seq`
--

LOCK TABLES `il_meta_lr_type_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_lr_type_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_lr_type_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_meta_data`
--

DROP TABLE IF EXISTS `il_meta_meta_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_meta_data` (
  `meta_meta_data_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` char(6) DEFAULT NULL,
  `meta_data_scheme` char(16) DEFAULT NULL,
  `language` char(2) DEFAULT NULL,
  PRIMARY KEY (`meta_meta_data_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_meta_data`
--

LOCK TABLES `il_meta_meta_data` WRITE;
/*!40000 ALTER TABLE `il_meta_meta_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_meta_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_meta_data_seq`
--

DROP TABLE IF EXISTS `il_meta_meta_data_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_meta_data_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_meta_data_seq`
--

LOCK TABLES `il_meta_meta_data_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_meta_data_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_meta_data_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_meta_schema`
--

DROP TABLE IF EXISTS `il_meta_meta_schema`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_meta_schema` (
  `meta_meta_schema_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `meta_data_schema` varchar(16) DEFAULT NULL,
  PRIMARY KEY (`meta_meta_schema_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_meta_schema`
--

LOCK TABLES `il_meta_meta_schema` WRITE;
/*!40000 ALTER TABLE `il_meta_meta_schema` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_meta_schema` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_meta_schema_seq`
--

DROP TABLE IF EXISTS `il_meta_meta_schema_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_meta_schema_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_meta_schema_seq`
--

LOCK TABLES `il_meta_meta_schema_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_meta_schema_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_meta_schema_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_oer_exposed`
--

DROP TABLE IF EXISTS `il_meta_oer_exposed`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_oer_exposed` (
  `obj_id` int NOT NULL,
  `identifier` varchar(64) NOT NULL,
  `datestamp` bigint NOT NULL,
  `metadata` longtext NOT NULL,
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_oer_exposed`
--

LOCK TABLES `il_meta_oer_exposed` WRITE;
/*!40000 ALTER TABLE `il_meta_oer_exposed` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_oer_exposed` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_oer_stat`
--

DROP TABLE IF EXISTS `il_meta_oer_stat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_oer_stat` (
  `obj_id` int NOT NULL,
  `href_id` int NOT NULL,
  `blocked` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_oer_stat`
--

LOCK TABLES `il_meta_oer_stat` WRITE;
/*!40000 ALTER TABLE `il_meta_oer_stat` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_oer_stat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_or_composite`
--

DROP TABLE IF EXISTS `il_meta_or_composite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_or_composite` (
  `meta_or_composite_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `min_version` varchar(255) DEFAULT NULL,
  `max_version` varchar(255) DEFAULT NULL,
  `type_src` varchar(64) NOT NULL DEFAULT '',
  `name_src` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`meta_or_composite_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_or_composite`
--

LOCK TABLES `il_meta_or_composite` WRITE;
/*!40000 ALTER TABLE `il_meta_or_composite` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_or_composite` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_or_composite_seq`
--

DROP TABLE IF EXISTS `il_meta_or_composite_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_or_composite_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_or_composite_seq`
--

LOCK TABLES `il_meta_or_composite_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_or_composite_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_or_composite_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_relation`
--

DROP TABLE IF EXISTS `il_meta_relation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_relation` (
  `meta_relation_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` char(6) DEFAULT NULL,
  `kind` char(255) DEFAULT NULL,
  `kind_src` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`meta_relation_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_relation`
--

LOCK TABLES `il_meta_relation` WRITE;
/*!40000 ALTER TABLE `il_meta_relation` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_relation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_relation_seq`
--

DROP TABLE IF EXISTS `il_meta_relation_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_relation_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_relation_seq`
--

LOCK TABLES `il_meta_relation_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_relation_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_relation_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_requirement`
--

DROP TABLE IF EXISTS `il_meta_requirement`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_requirement` (
  `meta_requirement_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `operating_system_name` varchar(16) DEFAULT NULL,
  `os_min_version` char(255) DEFAULT NULL,
  `os_max_version` char(255) DEFAULT NULL,
  `browser_name` varchar(32) DEFAULT NULL,
  `browser_minimum_version` char(255) DEFAULT NULL,
  `browser_maximum_version` char(255) DEFAULT NULL,
  `or_composite_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`meta_requirement_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_requirement`
--

LOCK TABLES `il_meta_requirement` WRITE;
/*!40000 ALTER TABLE `il_meta_requirement` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_requirement` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_requirement_seq`
--

DROP TABLE IF EXISTS `il_meta_requirement_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_requirement_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_requirement_seq`
--

LOCK TABLES `il_meta_requirement_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_requirement_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_requirement_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_rights`
--

DROP TABLE IF EXISTS `il_meta_rights`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_rights` (
  `meta_rights_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `costs` char(255) DEFAULT NULL,
  `cpr_and_or` char(255) DEFAULT NULL,
  `description` varchar(4000) DEFAULT NULL,
  `description_language` char(2) DEFAULT NULL,
  `costs_src` varchar(64) NOT NULL DEFAULT '',
  `cpr_and_or_src` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`meta_rights_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_rights`
--

LOCK TABLES `il_meta_rights` WRITE;
/*!40000 ALTER TABLE `il_meta_rights` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_rights` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_rights_seq`
--

DROP TABLE IF EXISTS `il_meta_rights_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_rights_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_rights_seq`
--

LOCK TABLES `il_meta_rights_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_rights_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_rights_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_tar`
--

DROP TABLE IF EXISTS `il_meta_tar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_tar` (
  `meta_tar_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(16) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `typical_age_range` varchar(4000) DEFAULT NULL,
  `tar_language` char(2) DEFAULT NULL,
  `tar_min` char(2) DEFAULT NULL,
  `tar_max` char(2) DEFAULT NULL,
  PRIMARY KEY (`meta_tar_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_tar`
--

LOCK TABLES `il_meta_tar` WRITE;
/*!40000 ALTER TABLE `il_meta_tar` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_tar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_tar_seq`
--

DROP TABLE IF EXISTS `il_meta_tar_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_tar_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_tar_seq`
--

LOCK TABLES `il_meta_tar_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_tar_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_tar_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_taxon`
--

DROP TABLE IF EXISTS `il_meta_taxon`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_taxon` (
  `meta_taxon_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(32) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `taxon` varchar(4000) DEFAULT NULL,
  `taxon_language` char(2) DEFAULT NULL,
  `taxon_id` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`meta_taxon_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_taxon`
--

LOCK TABLES `il_meta_taxon` WRITE;
/*!40000 ALTER TABLE `il_meta_taxon` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_taxon` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_taxon_path`
--

DROP TABLE IF EXISTS `il_meta_taxon_path`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_taxon_path` (
  `meta_taxon_path_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `parent_type` varchar(32) DEFAULT NULL,
  `parent_id` int DEFAULT NULL,
  `source` varchar(4000) DEFAULT NULL,
  `source_language` char(2) DEFAULT NULL,
  PRIMARY KEY (`meta_taxon_path_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_taxon_path`
--

LOCK TABLES `il_meta_taxon_path` WRITE;
/*!40000 ALTER TABLE `il_meta_taxon_path` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_taxon_path` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_taxon_path_seq`
--

DROP TABLE IF EXISTS `il_meta_taxon_path_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_taxon_path_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_taxon_path_seq`
--

LOCK TABLES `il_meta_taxon_path_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_taxon_path_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_taxon_path_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_taxon_seq`
--

DROP TABLE IF EXISTS `il_meta_taxon_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_taxon_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_taxon_seq`
--

LOCK TABLES `il_meta_taxon_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_taxon_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_taxon_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_technical`
--

DROP TABLE IF EXISTS `il_meta_technical`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_technical` (
  `meta_technical_id` int NOT NULL DEFAULT '0',
  `rbac_id` int DEFAULT NULL,
  `obj_id` int DEFAULT NULL,
  `obj_type` varchar(6) DEFAULT NULL,
  `t_size` varchar(4000) DEFAULT NULL,
  `ir` varchar(4000) DEFAULT NULL,
  `ir_language` char(2) DEFAULT NULL,
  `opr` varchar(4000) DEFAULT NULL,
  `opr_language` char(2) DEFAULT NULL,
  `duration` varchar(4000) DEFAULT NULL,
  `duration_descr` longtext,
  `duration_descr_lang` varchar(2) DEFAULT NULL,
  PRIMARY KEY (`meta_technical_id`),
  KEY `i1_idx` (`rbac_id`,`obj_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_technical`
--

LOCK TABLES `il_meta_technical` WRITE;
/*!40000 ALTER TABLE `il_meta_technical` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_technical` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_meta_technical_seq`
--

DROP TABLE IF EXISTS `il_meta_technical_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_meta_technical_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_meta_technical_seq`
--

LOCK TABLES `il_meta_technical_seq` WRITE;
/*!40000 ALTER TABLE `il_meta_technical_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_meta_technical_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_mm_actions`
--

DROP TABLE IF EXISTS `il_mm_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_mm_actions` (
  `identification` varchar(255) NOT NULL,
  `action` varchar(4000) DEFAULT NULL,
  `external` tinyint DEFAULT NULL,
  PRIMARY KEY (`identification`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_mm_actions`
--

LOCK TABLES `il_mm_actions` WRITE;
/*!40000 ALTER TABLE `il_mm_actions` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_mm_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_mm_custom_items`
--

DROP TABLE IF EXISTS `il_mm_custom_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_mm_custom_items` (
  `identifier` varchar(255) NOT NULL,
  `type` varchar(128) DEFAULT NULL,
  `action` varchar(4000) DEFAULT NULL,
  `top_item` tinyint DEFAULT NULL,
  `default_title` varchar(4000) DEFAULT NULL,
  `role_based_visibility` tinyint DEFAULT '0',
  `global_role_ids` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_mm_custom_items`
--

LOCK TABLES `il_mm_custom_items` WRITE;
/*!40000 ALTER TABLE `il_mm_custom_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_mm_custom_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_mm_items`
--

DROP TABLE IF EXISTS `il_mm_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_mm_items` (
  `identification` varchar(255) NOT NULL DEFAULT '',
  `active` tinyint DEFAULT NULL,
  `position` int DEFAULT NULL,
  `parent_identification` varchar(255) DEFAULT NULL,
  `icon_id` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`identification`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_mm_items`
--

LOCK TABLES `il_mm_items` WRITE;
/*!40000 ALTER TABLE `il_mm_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_mm_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_mm_translation`
--

DROP TABLE IF EXISTS `il_mm_translation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_mm_translation` (
  `id` varchar(255) NOT NULL,
  `identification` varchar(255) DEFAULT NULL,
  `translation` varchar(4000) DEFAULT NULL,
  `language_key` varchar(8) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_mm_translation`
--

LOCK TABLES `il_mm_translation` WRITE;
/*!40000 ALTER TABLE `il_mm_translation` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_mm_translation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_new_item_grp`
--

DROP TABLE IF EXISTS `il_new_item_grp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_new_item_grp` (
  `id` int NOT NULL DEFAULT '0',
  `titles` varchar(1000) DEFAULT NULL,
  `pos` smallint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_new_item_grp`
--

LOCK TABLES `il_new_item_grp` WRITE;
/*!40000 ALTER TABLE `il_new_item_grp` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_new_item_grp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_new_item_grp_seq`
--

DROP TABLE IF EXISTS `il_new_item_grp_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_new_item_grp_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_new_item_grp_seq`
--

LOCK TABLES `il_new_item_grp_seq` WRITE;
/*!40000 ALTER TABLE `il_new_item_grp_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_new_item_grp_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_news_item`
--

DROP TABLE IF EXISTS `il_news_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_news_item` (
  `id` int NOT NULL DEFAULT '0',
  `priority` int DEFAULT '1',
  `title` varchar(200) DEFAULT NULL,
  `content` longtext,
  `context_obj_id` int DEFAULT NULL,
  `context_obj_type` varchar(10) DEFAULT NULL,
  `context_sub_obj_id` int DEFAULT NULL,
  `context_sub_obj_type` varchar(10) DEFAULT NULL,
  `content_type` char(5) DEFAULT 'text',
  `creation_date` datetime DEFAULT NULL,
  `update_date` datetime DEFAULT NULL,
  `user_id` int DEFAULT NULL,
  `visibility` char(6) DEFAULT 'users',
  `content_long` longtext,
  `content_is_lang_var` tinyint DEFAULT '0',
  `mob_id` int DEFAULT NULL,
  `playtime` varchar(8) DEFAULT NULL,
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `content_text_is_lang_var` tinyint NOT NULL DEFAULT '0',
  `mob_cnt_download` int NOT NULL DEFAULT '0',
  `mob_cnt_play` int NOT NULL DEFAULT '0',
  `content_html` tinyint NOT NULL DEFAULT '0',
  `update_user_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `i1_idx` (`context_obj_id`),
  KEY `i2_idx` (`creation_date`),
  KEY `mo_idx` (`mob_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_news_item`
--

LOCK TABLES `il_news_item` WRITE;
/*!40000 ALTER TABLE `il_news_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_news_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_news_item_seq`
--

DROP TABLE IF EXISTS `il_news_item_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_news_item_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_news_item_seq`
--

LOCK TABLES `il_news_item_seq` WRITE;
/*!40000 ALTER TABLE `il_news_item_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_news_item_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_news_read`
--

DROP TABLE IF EXISTS `il_news_read`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_news_read` (
  `user_id` int NOT NULL DEFAULT '0',
  `news_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`user_id`,`news_id`),
  KEY `i1_idx` (`user_id`),
  KEY `i2_idx` (`news_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_news_read`
--

LOCK TABLES `il_news_read` WRITE;
/*!40000 ALTER TABLE `il_news_read` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_news_read` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_news_subscription`
--

DROP TABLE IF EXISTS `il_news_subscription`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_news_subscription` (
  `user_id` int NOT NULL DEFAULT '0',
  `ref_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`user_id`,`ref_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_news_subscription`
--

LOCK TABLES `il_news_subscription` WRITE;
/*!40000 ALTER TABLE `il_news_subscription` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_news_subscription` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_object_def`
--

DROP TABLE IF EXISTS `il_object_def`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_object_def` (
  `id` char(10) NOT NULL DEFAULT '',
  `class_name` varchar(200) DEFAULT NULL,
  `component` varchar(200) DEFAULT NULL,
  `location` varchar(250) DEFAULT NULL,
  `checkbox` tinyint NOT NULL DEFAULT '0',
  `inherit` tinyint NOT NULL DEFAULT '0',
  `translate` char(5) DEFAULT NULL,
  `devmode` tinyint NOT NULL DEFAULT '0',
  `allow_link` tinyint NOT NULL DEFAULT '0',
  `allow_copy` tinyint NOT NULL DEFAULT '0',
  `rbac` tinyint NOT NULL DEFAULT '0',
  `system` tinyint NOT NULL DEFAULT '0',
  `sideblock` tinyint NOT NULL DEFAULT '0',
  `default_pos` int NOT NULL DEFAULT '0',
  `grp` char(10) DEFAULT NULL,
  `default_pres_pos` int NOT NULL DEFAULT '0',
  `export` tinyint NOT NULL DEFAULT '0',
  `repository` tinyint NOT NULL DEFAULT '1',
  `workspace` tinyint NOT NULL DEFAULT '0',
  `administration` tinyint NOT NULL DEFAULT '0',
  `amet` tinyint NOT NULL DEFAULT '0',
  `orgunit_permissions` tinyint NOT NULL DEFAULT '0',
  `lti_provider` tinyint NOT NULL DEFAULT '0',
  `offline_handling` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_object_def`
--

LOCK TABLES `il_object_def` WRITE;
/*!40000 ALTER TABLE `il_object_def` DISABLE KEYS */;
INSERT INTO `il_object_def` VALUES ('accs','AccessibilitySettings','components/ILIAS/Accessibility','components/ILIAS/Accessibility/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('adm','SystemFolder','components/ILIAS/SystemFolder','components/ILIAS/SystemFolder/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('adn','AdministrativeNotification','components/ILIAS/AdministrativeNotification','components/ILIAS/AdministrativeNotification/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('adve','AdvancedEditing','components/ILIAS/AdvancedEditing','components/ILIAS/AdvancedEditing/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('assf','TestFolder','components/ILIAS/Test','components/ILIAS/Test/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('auth','AuthSettings','components/ILIAS/Authentication','components/ILIAS/Authentication/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('awra','AwarenessAdministration','components/ILIAS/Awareness','components/ILIAS/Awareness/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('bdga','BadgeAdministration','components/ILIAS/Badge','components/ILIAS/Badge/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('bibl','Bibliographic','components/ILIAS/Bibliographic','components/ILIAS/Bibliographic/classes',1,1,'0',0,1,1,1,0,0,360,NULL,360,1,1,0,0,0,0,0,0),('bibs','BibliographicAdmin','components/ILIAS/Bibliographic','components/ILIAS/Bibliographic/classes/Admin',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('blga','BlogAdministration','components/ILIAS/Blog','components/ILIAS/Blog/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('blog','Blog','components/ILIAS/Blog','components/ILIAS/Blog/classes',1,1,'0',0,1,1,1,0,0,330,NULL,330,1,1,1,0,0,0,0,1),('book','BookingPool','components/ILIAS/BookingManager','components/ILIAS/BookingManager/classes',1,1,NULL,0,1,1,1,0,0,250,NULL,250,0,1,0,0,0,0,0,1),('cadm','ContactAdministration','components/ILIAS/Contact','components/ILIAS/Contact/classes',0,1,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('cals','CalendarSettings','components/ILIAS/Calendar','components/ILIAS/Calendar/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('cat','Category','components/ILIAS/Category','components/ILIAS/Category/classes',1,1,'db',0,0,1,1,0,0,10,'cat',10,1,1,0,0,1,0,0,0),('catr','CategoryReference','components/ILIAS/CategoryReference','components/ILIAS/CategoryReference/classes',1,0,'0',0,0,1,1,0,0,15,'cat',10,1,1,0,0,0,0,0,0),('cert','CertificateSettings','components/ILIAS/Certificate','components/ILIAS/Certificate/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('chta','ChatroomAdmin','components/ILIAS/Chatroom','components/ILIAS/Chatroom/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('chtr','Chatroom','components/ILIAS/Chatroom','components/ILIAS/Chatroom/classes',1,0,'0',0,1,1,1,0,0,90,NULL,150,0,1,0,0,0,0,0,1),('cmis','CmiXapiAdministration','components/ILIAS/CmiXapi','components/ILIAS/CmiXapi/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('cmix','CmiXapi','components/ILIAS/CmiXapi','components/ILIAS/CmiXapi/classes',1,1,'db',0,1,1,1,0,0,120,'lres',0,1,1,0,0,0,0,0,1),('cmps','ComponentSettings','components/ILIAS/Component','components/ILIAS/Component/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('cmxv','CmiXapiVerification','components/ILIAS/CmiXapi','components/ILIAS/CmiXapi/classes/Verification',0,0,'0',0,0,0,0,0,0,90,NULL,150,0,0,0,0,0,0,0,0),('coms','CommentsSettings','components/ILIAS/Notes','components/ILIAS/Notes/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('copa','ContentPage','components/ILIAS/ContentPage','components/ILIAS/ContentPage/classes',1,1,'db',0,1,1,1,0,0,340,NULL,340,1,1,0,0,0,0,0,1),('cpad','ContentPageAdministration','components/ILIAS/ContentPage','components/ILIAS/ContentPage/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('crs','Course','components/ILIAS/Course','components/ILIAS/Course/classes',1,1,'db',0,0,1,1,0,0,20,'crs',30,1,1,0,0,1,1,1,1),('crsr','CourseReference','components/ILIAS/CourseReference','components/ILIAS/CourseReference/classes',1,0,'0',0,0,1,1,0,0,25,'crs',20,1,1,0,0,0,0,0,0),('crss','CourseAdministration','components/ILIAS/Course','components/ILIAS/Course/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('crsv','CourseVerification','components/ILIAS/Course','components/ILIAS/Course/classes/Verification',0,0,'0',0,0,0,0,0,0,90,NULL,150,0,0,0,0,0,0,0,0),('dcl','DataCollection','components/ILIAS/DataCollection','components/ILIAS/DataCollection/classes',1,1,'0',0,1,1,1,0,0,340,NULL,340,1,1,0,0,0,0,0,0),('dpro','DataProtection','components/ILIAS/DataProtection','components/ILIAS/DataProtection/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('dshs','DashboardSettings','components/ILIAS/Dashboard','components/ILIAS/Dashboard/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('ecss','ECSSettings','components/ILIAS/WebServices','components/ILIAS/WebServices/ECS/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('etal','EmployeeTalk','components/ILIAS/EmployeeTalk','components/ILIAS/EmployeeTalk/classes/Talk',1,1,'db',0,0,0,0,0,0,10,'tala',10,0,0,0,1,0,1,0,0),('exc','Exercise','components/ILIAS/Exercise','components/ILIAS/Exercise/classes',1,1,NULL,0,1,1,1,0,0,170,NULL,160,1,1,0,0,1,1,0,1),('excs','ExerciseAdministration','components/ILIAS/Exercise','components/ILIAS/Exercise/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('excv','ExerciseVerification','components/ILIAS/Exercise','components/ILIAS/Exercise/classes',0,0,'0',0,0,0,0,0,0,100,NULL,160,0,0,0,0,0,0,0,0),('extt','ExternalToolsSettings','components/ILIAS/Administration','components/ILIAS/Administration/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('facs','FileAccessSettings','components/ILIAS/File','components/ILIAS/File/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('file','File','components/ILIAS/File','components/ILIAS/File/classes',1,0,'0',0,1,1,1,0,0,90,NULL,150,1,1,1,0,1,0,0,0),('fils','FileServices','components/ILIAS/FileServices','components/ILIAS/FileServices/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('fold','Folder','components/ILIAS/Folder','components/ILIAS/Folder/classes',1,1,'db',0,0,1,1,0,0,40,NULL,20,1,1,0,0,0,0,0,0),('frm','Forum','components/ILIAS/Forum','components/ILIAS/Forum/classes',1,1,'0',0,1,1,1,0,0,70,NULL,90,1,1,0,0,0,0,0,1),('frma','ForumAdministration','components/ILIAS/Forum','components/ILIAS/Forum/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('glo','Glossary','components/ILIAS/Glossary','components/ILIAS/Glossary/classes',1,1,'0',0,1,1,1,0,0,160,NULL,110,1,1,0,0,0,0,0,1),('grp','Group','components/ILIAS/Group','components/ILIAS/Group/classes',1,1,'db',0,0,1,1,0,0,50,NULL,70,1,1,0,0,1,1,1,1),('grpr','GroupReference','components/ILIAS/GroupReference','components/ILIAS/GroupReference/classes',1,0,'0',0,0,1,1,0,0,51,'grp',20,1,1,0,0,0,0,0,0),('grps','GroupAdministration','components/ILIAS/Group','components/ILIAS/Group/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('gsfo','FooterAdministration','components/ILIAS/GlobalScreen_','components/ILIAS/GlobalScreen_/classes/UI/Footer',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('hlps','HelpSettings','components/ILIAS/Help','components/ILIAS/Help/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('htlm','FileBasedLM','components/ILIAS/HTMLLearningModule','components/ILIAS/HTMLLearningModule/classes',1,1,'0',0,1,1,1,0,0,130,'lres',0,1,1,0,0,0,0,0,1),('iass','IndividualAssessment','components/ILIAS/IndividualAssessment','components/ILIAS/IndividualAssessment/classes',1,1,'0',0,1,1,1,0,0,190,NULL,190,1,1,0,0,1,1,0,1),('impr','LegalNotice','components/ILIAS/Imprint','components/ILIAS/Imprint/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('itgr','ItemGroup','components/ILIAS/ItemGroup','components/ILIAS/ItemGroup/classes',1,0,'db',0,0,1,1,0,0,45,NULL,5,1,1,0,0,0,0,0,0),('lhts','LearningHistorySettings','components/ILIAS/LearningHistory','components/ILIAS/LearningHistory/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('lm','LearningModule','components/ILIAS/LearningModule','components/ILIAS/LearningModule/classes',1,1,'db',0,1,1,1,0,0,120,'lres',0,1,1,0,0,0,0,1,1),('lng','Language','components/ILIAS/Language','components/ILIAS/Language/classes',1,0,'0',0,0,0,0,0,0,0,NULL,0,0,1,0,0,0,0,0,0),('lngf','LanguageFolder','components/ILIAS/Language','components/ILIAS/Language/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('logs','LoggingSettings','components/ILIAS/Logging','components/ILIAS/Logging/classes',0,1,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('lrss','LearningResourcesSettings','components/ILIAS/LearningModule','components/ILIAS/LearningModule/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('lso','LearningSequence','components/ILIAS/LearningSequence','components/ILIAS/LearningSequence/classes',1,1,'0',0,0,1,1,0,0,30,'lso',300,1,1,0,0,0,0,0,1),('lsos','LearningSequenceAdmin','components/ILIAS/LearningSequence','components/ILIAS/LearningSequence/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('lti','LTIConsumer','components/ILIAS/LTIConsumer','components/ILIAS/LTIConsumer/classes',1,1,'db',0,1,0,1,0,0,120,'lres',0,0,1,0,0,0,0,0,1),('ltis','LTIAdministration','components/ILIAS/LTIProvider','components/ILIAS/LTIProvider/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('ltiv','LTIConsumerVerification','components/ILIAS/LTIConsumer','components/ILIAS/LTIConsumer/classes/Verification',0,0,'0',0,0,0,0,0,0,90,NULL,150,0,0,0,0,0,0,0,0),('mail','Mail','components/ILIAS/Mail','components/ILIAS/Mail/classes',0,0,'sys',0,0,0,1,0,0,0,NULL,0,0,1,0,1,0,0,0,0),('mcst','MediaCast','components/ILIAS/MediaCast','components/ILIAS/MediaCast/classes',1,1,NULL,0,1,1,1,0,0,110,NULL,130,1,1,0,0,0,0,0,1),('mcts','MediaCastSettings','components/ILIAS/MediaCast','components/ILIAS/MediaCast/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('mds','MDSettings','components/ILIAS/MetaData','components/ILIAS/MetaData/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('mep','MediaPool','components/ILIAS/MediaPool','components/ILIAS/MediaPool/classes',1,1,'db',0,1,1,1,0,0,200,NULL,190,1,1,0,0,0,0,0,1),('mme','MainMenu','components/ILIAS/MainMenu','components/ILIAS/MainMenu/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('mobs','MediaObjectsSettings','components/ILIAS/MediaObjects','components/ILIAS/MediaObjects/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('nota','NotificationAdmin','components/ILIAS/Notifications','components/ILIAS/Notifications/classes',0,0,'sys',0,0,0,0,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('nots','NotesSettings','components/ILIAS/Notes','components/ILIAS/Notes/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('nwss','NewsSettings','components/ILIAS/News','components/ILIAS/News/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('objf','ObjectFolder','components/ILIAS/ILIASObject','components/ILIAS/ILIASObject/classes',0,0,'sys',1,0,0,1,1,0,0,NULL,0,0,1,0,0,0,0,0,0),('orgu','OrgUnit','components/ILIAS/OrgUnit','components/ILIAS/OrgUnit/classes',1,1,'db',0,0,0,1,0,0,10,'orgu',10,1,1,0,1,0,0,0,0),('otpl','ObjectTemplateAdministration','components/ILIAS/DidacticTemplate','components/ILIAS/DidacticTemplate/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('poll','Poll','components/ILIAS/Poll','components/ILIAS/Poll/classes',1,1,'0',0,1,1,1,0,1,350,NULL,350,1,1,1,0,0,0,0,1),('prfa','PortfolioAdministration','components/ILIAS/Portfolio','components/ILIAS/Portfolio/Administration',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('prg','StudyProgramme','components/ILIAS/StudyProgramme','components/ILIAS/StudyProgramme/classes',1,1,'db',0,0,1,1,0,0,30,NULL,30,0,1,0,0,0,1,0,0),('prgr','StudyProgrammeReference','components/ILIAS/StudyProgrammeReference','components/ILIAS/StudyProgrammeReference/classes',1,0,'0',0,1,1,1,0,0,25,'prg',20,0,1,0,0,0,0,0,0),('prgs','StudyProgrammeAdmin','components/ILIAS/StudyProgramme','components/ILIAS/StudyProgramme/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('prss','PersonalWorkspaceSettings','components/ILIAS/PersonalWorkspace','components/ILIAS/PersonalWorkspace/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('prtf','Portfolio','components/ILIAS/Portfolio','components/ILIAS/Portfolio/classes',0,0,'0',0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,0),('prtt','PortfolioTemplate','components/ILIAS/Portfolio','components/ILIAS/Portfolio/Template',1,0,'0',0,1,1,1,0,0,500,NULL,500,1,1,0,0,0,0,0,1),('ps','PrivacySecurity','components/ILIAS/PrivacySecurity','components/ILIAS/PrivacySecurity/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('qpl','QuestionPool','components/ILIAS/TestQuestionPool','components/ILIAS/TestQuestionPool/classes',1,1,'0',0,1,1,1,0,0,210,NULL,200,1,1,0,0,0,0,0,1),('rcat','RemoteCategory','components/ILIAS/RemoteCategory','components/ILIAS/RemoteCategory/classes',1,0,'0',0,1,1,1,0,0,30,'cat',40,0,0,0,0,0,0,0,0),('rcrs','RemoteCourse','components/ILIAS/RemoteCourse','components/ILIAS/RemoteCourse/classes',1,0,'0',0,1,1,1,0,0,30,'crs',40,0,0,0,0,1,0,0,0),('recf','RecoveryFolder','components/ILIAS/Administration','components/ILIAS/Administration/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('reps','RepositorySettings','components/ILIAS/Repository','components/ILIAS/Repository/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('rfil','RemoteFile','components/ILIAS/RemoteFile','components/ILIAS/RemoteFile/classes',1,0,'0',0,1,1,1,0,0,30,'file',40,0,0,0,0,0,0,0,0),('rglo','RemoteGlossary','components/ILIAS/RemoteGlossary','components/ILIAS/RemoteGlossary/classes',1,0,'0',0,1,1,1,0,0,30,'glo',40,0,0,0,0,0,0,0,0),('rgrp','RemoteGroup','components/ILIAS/RemoteGroup','components/ILIAS/RemoteGroup/classes',1,0,'0',0,1,1,1,0,0,30,'grp',40,0,0,0,0,0,0,0,0),('rlm','RemoteLearningModule','components/ILIAS/RemoteLearningModule','components/ILIAS/RemoteLearningModule/classes',1,0,'0',0,1,1,1,0,0,30,'lres',40,0,0,0,0,0,0,0,0),('role','Role','components/ILIAS/AccessControl','components/ILIAS/AccessControl/classes',1,0,'0',0,0,0,0,0,0,0,NULL,0,0,1,0,1,0,0,0,0),('rolf','RoleFolder','components/ILIAS/AccessControl','components/ILIAS/AccessControl/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('rolt','RoleTemplate','components/ILIAS/AccessControl','components/ILIAS/AccessControl/classes',1,0,'0',0,0,0,0,0,0,0,NULL,0,0,1,0,0,0,0,0,0),('root','RootFolder','components/ILIAS/RootFolder','components/ILIAS/RootFolder/classes',0,0,'0',0,0,0,1,1,0,0,NULL,0,0,1,0,0,0,0,0,0),('rtst','RemoteTest','components/ILIAS/RemoteTest','components/ILIAS/RemoteTest/classes',1,0,'0',0,1,1,1,0,0,30,'tst',40,0,0,0,0,0,0,0,0),('rwik','RemoteWiki','components/ILIAS/RemoteWiki','components/ILIAS/RemoteWiki/classes',1,0,'0',0,1,1,1,0,0,30,'wiki',40,0,0,0,0,0,0,0,0),('sahs','SAHSLearningModule','components/ILIAS/ScormAicc','components/ILIAS/ScormAicc/classes',1,1,'0',0,1,1,1,0,0,140,'lres',0,1,1,0,0,0,0,1,1),('scov','SCORMVerification','components/ILIAS/ScormAicc','components/ILIAS/ScormAicc/classes/Verification',0,0,'0',0,0,0,0,0,0,90,NULL,150,0,0,0,0,0,0,0,0),('seas','SearchSettings','components/ILIAS/Search','components/ILIAS/Search/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('sess','Session','components/ILIAS/Session','components/ILIAS/Session/classes',1,0,'0',0,0,1,1,0,0,15,NULL,15,1,1,0,0,1,0,0,0),('skee','SkillTree','components/ILIAS/Skill','components/ILIAS/Skill/Tree/classes',0,0,'0',0,0,0,1,0,0,0,NULL,0,0,1,0,1,0,0,0,0),('skmg','SkillManagement','components/ILIAS/Skill','components/ILIAS/Skill/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('spl','SurveyQuestionPool','components/ILIAS/SurveyQuestionPool','components/ILIAS/SurveyQuestionPool/classes',1,1,'0',0,1,1,1,0,0,220,NULL,210,1,1,0,0,0,0,0,1),('sty','StyleSheet','components/ILIAS/Style','components/ILIAS/Style/Content/classes',1,0,'0',0,0,0,0,0,0,0,NULL,0,0,1,0,0,0,0,0,0),('stys','StyleSettings','components/ILIAS/Style','components/ILIAS/Style/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('svy','Survey','components/ILIAS/Survey','components/ILIAS/Survey/classes',1,1,'0',0,1,1,1,0,0,190,NULL,180,1,1,0,0,0,1,1,1),('svyf','SurveyAdministration','components/ILIAS/Survey','components/ILIAS/Survey/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('sysc','SystemCheck','components/ILIAS/SystemCheck','components/ILIAS/SystemCheck/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('tags','TaggingSettings','components/ILIAS/Tagging','components/ILIAS/Tagging/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('tala','TalkTemplateAdministration','components/ILIAS/EmployeeTalk','components/ILIAS/EmployeeTalk/classes',0,0,'sys',0,0,0,1,1,0,0,'tala',0,0,0,0,1,0,0,0,0),('tals','EmployeeTalkSeries','components/ILIAS/EmployeeTalk','components/ILIAS/EmployeeTalk/classes/TalkSeries',1,1,'db',0,0,0,0,0,0,10,'tala',10,0,0,0,1,0,0,0,0),('talt','TalkTemplate','components/ILIAS/EmployeeTalk','components/ILIAS/EmployeeTalk/classes',1,1,'db',0,0,0,1,0,0,10,'tala',10,0,0,0,1,0,0,0,1),('tax','Taxonomy','components/ILIAS/Taxonomy','components/ILIAS/Taxonomy/classes',1,0,'0',0,0,0,0,0,0,0,NULL,0,0,1,0,0,0,0,0,0),('taxs','TaxonomyAdministration','components/ILIAS/Taxonomy','components/ILIAS/Taxonomy/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('tos','TermsOfService','components/ILIAS/TermsOfService','components/ILIAS/TermsOfService/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('trac','UserTracking','components/ILIAS/Tracking','components/ILIAS/Tracking/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('tst','Test','components/ILIAS/Test','components/ILIAS/Test/classes',1,1,'0',0,1,1,1,0,0,180,NULL,170,1,1,0,0,0,1,1,1),('tstv','TestVerification','components/ILIAS/Test','components/ILIAS/Test/classes',0,0,'0',0,0,0,0,0,0,90,NULL,150,0,0,0,0,0,0,0,0),('usr','User','components/ILIAS/User','components/ILIAS/User/classes',1,0,'0',0,0,0,0,0,0,0,NULL,0,0,1,0,0,0,0,0,0),('usrf','UserFolder','components/ILIAS/User','components/ILIAS/User/classes',0,1,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,1,0,0),('wbdv','WebDAV','components/ILIAS/WebDAV','components/ILIAS/WebDAV/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('wbrs','WebResourceAdministration','components/ILIAS/WebResource','components/ILIAS/WebResource/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('webr','LinkResource','components/ILIAS/WebResource','components/ILIAS/WebResource/classes',1,0,'0',0,1,1,1,0,0,100,NULL,120,1,1,1,0,0,0,0,1),('wfld','WorkspaceFolder','components/ILIAS/WorkspaceFolder','components/ILIAS/WorkspaceFolder/classes',1,1,'0',0,0,0,0,0,0,300,NULL,300,0,0,1,0,0,0,0,0),('wiki','Wiki','components/ILIAS/Wiki','components/ILIAS/Wiki/classes',1,1,NULL,0,1,1,1,0,0,115,NULL,140,1,1,0,0,0,0,1,1),('wiks','WikiSettings','components/ILIAS/Wiki','components/ILIAS/Wiki/classes',0,0,'sys',0,0,0,1,1,0,0,NULL,0,0,1,0,1,0,0,0,0),('wsrt','WorkspaceRootFolder','components/ILIAS/WorkspaceRootFolder','components/ILIAS/WorkspaceRootFolder/classes',0,0,'0',0,0,0,0,1,0,0,NULL,0,0,0,1,0,0,0,0,0);
/*!40000 ALTER TABLE `il_object_def` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_object_group`
--

DROP TABLE IF EXISTS `il_object_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_object_group` (
  `id` char(10) NOT NULL DEFAULT '',
  `name` varchar(200) DEFAULT NULL,
  `default_pres_pos` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_object_group`
--

LOCK TABLES `il_object_group` WRITE;
/*!40000 ALTER TABLE `il_object_group` DISABLE KEYS */;
INSERT INTO `il_object_group` VALUES ('cat','Categories',10),('crs','Courses',30),('file','Files',150),('glo','Glossaries',110),('grp','Groups',70),('iass','IndividualAssessment',170),('lres','LearningResources',100),('lso','LearningSequence',300),('orgu','Organisational Unit',10),('prg','StudyProgramme',30),('tala','Employee Talk Templates',10),('tst','Tests',170),('wiki','Wikis',140);
/*!40000 ALTER TABLE `il_object_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_object_sub_type`
--

DROP TABLE IF EXISTS `il_object_sub_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_object_sub_type` (
  `obj_type` varchar(10) NOT NULL DEFAULT '',
  `sub_type` varchar(10) NOT NULL DEFAULT '',
  `amet` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`obj_type`,`sub_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_object_sub_type`
--

LOCK TABLES `il_object_sub_type` WRITE;
/*!40000 ALTER TABLE `il_object_sub_type` DISABLE KEYS */;
INSERT INTO `il_object_sub_type` VALUES ('book','bobj',1),('glo','term',1),('mep','mob',1),('mep','mpg',1),('orgu','orgu_type',1),('prg','prg_type',1),('prtf','pfpg',1),('prtt','pfpg',1),('tals','etal',1),('talt','etal',1),('wiki','wpg',1);
/*!40000 ALTER TABLE `il_object_sub_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_object_subobj`
--

DROP TABLE IF EXISTS `il_object_subobj`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_object_subobj` (
  `parent` char(10) NOT NULL DEFAULT '',
  `subobj` char(10) NOT NULL DEFAULT '',
  `mmax` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`parent`,`subobj`),
  KEY `i1_idx` (`subobj`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_object_subobj`
--

LOCK TABLES `il_object_subobj` WRITE;
/*!40000 ALTER TABLE `il_object_subobj` DISABLE KEYS */;
INSERT INTO `il_object_subobj` VALUES ('adm','accs',1),('adm','adn',1),('adm','adve',1),('adm','assf',1),('adm','auth',1),('adm','awra',1),('adm','bdga',1),('adm','bibs',1),('adm','blga',1),('adm','cadm',1),('adm','cals',1),('adm','cert',1),('adm','chta',1),('adm','cmis',1),('adm','cmps',1),('adm','coms',1),('adm','cpad',1),('adm','crss',1),('adm','dpro',1),('adm','dshs',1),('adm','ecss',1),('adm','excs',1),('adm','extt',1),('adm','facs',1),('adm','fils',1),('adm','frma',1),('adm','grps',1),('adm','gsfo',1),('adm','hlps',1),('adm','impr',1),('adm','lhts',1),('adm','lngf',1),('adm','logs',1),('adm','lrss',1),('adm','lsos',1),('adm','ltis',1),('adm','mail',1),('adm','mcts',1),('adm','mds',1),('adm','mme',1),('adm','mobs',1),('adm','nota',1),('adm','nots',1),('adm','nwss',1),('adm','objf',1),('adm','orgu',1),('adm','otpl',1),('adm','prfa',1),('adm','prgs',1),('adm','prss',1),('adm','ps',1),('adm','recf',1),('adm','reps',1),('adm','rolf',0),('adm','seas',1),('adm','skmg',1),('adm','stys',1),('adm','svyf',1),('adm','sysc',1),('adm','tags',1),('adm','tala',1),('adm','taxs',1),('adm','tos',1),('adm','trac',1),('adm','usrf',1),('adm','wbdv',1),('adm','wbrs',1),('adm','wiks',1),('cat','bibl',0),('cat','blog',0),('cat','book',0),('cat','cat',0),('cat','catr',0),('cat','chtr',0),('cat','cmix',0),('cat','copa',0),('cat','crs',0),('cat','crsr',0),('cat','dcl',0),('cat','exc',0),('cat','file',0),('cat','frm',0),('cat','glo',0),('cat','grp',0),('cat','grpr',0),('cat','htlm',0),('cat','iass',0),('cat','itgr',0),('cat','lm',0),('cat','lso',0),('cat','lti',0),('cat','mcst',0),('cat','mep',0),('cat','poll',0),('cat','prg',0),('cat','prgr',0),('cat','prtt',0),('cat','qpl',0),('cat','rcat',0),('cat','rcrs',0),('cat','rfil',0),('cat','rglo',0),('cat','rgrp',0),('cat','rlm',0),('cat','rtst',0),('cat','rwik',0),('cat','sahs',0),('cat','spl',0),('cat','svy',0),('cat','tst',0),('cat','webr',0),('cat','wiki',0),('crs','bibl',0),('crs','blog',0),('crs','book',0),('crs','catr',0),('crs','chtr',0),('crs','cmix',0),('crs','copa',0),('crs','crsr',0),('crs','dcl',0),('crs','exc',0),('crs','file',0),('crs','fold',0),('crs','frm',0),('crs','glo',0),('crs','grp',0),('crs','grpr',0),('crs','htlm',0),('crs','iass',0),('crs','itgr',0),('crs','lm',0),('crs','lso',0),('crs','lti',0),('crs','mcst',0),('crs','mep',0),('crs','poll',0),('crs','prtt',0),('crs','qpl',0),('crs','rcat',0),('crs','rcrs',0),('crs','rgrp',0),('crs','sahs',0),('crs','sess',0),('crs','spl',0),('crs','svy',0),('crs','tst',0),('crs','webr',0),('crs','wiki',0),('fold','bibl',0),('fold','blog',0),('fold','book',0),('fold','chtr',0),('fold','cmix',0),('fold','copa',0),('fold','dcl',0),('fold','exc',0),('fold','file',0),('fold','fold',0),('fold','frm',0),('fold','glo',0),('fold','grp',0),('fold','htlm',0),('fold','iass',0),('fold','itgr',0),('fold','lm',0),('fold','lso',0),('fold','lti',0),('fold','mcst',0),('fold','mep',0),('fold','poll',0),('fold','prtt',0),('fold','qpl',0),('fold','sahs',0),('fold','sess',0),('fold','spl',0),('fold','svy',0),('fold','tst',0),('fold','webr',0),('fold','wiki',0),('grp','bibl',0),('grp','blog',0),('grp','book',0),('grp','catr',0),('grp','chtr',0),('grp','cmix',0),('grp','copa',0),('grp','crsr',0),('grp','dcl',0),('grp','exc',0),('grp','file',0),('grp','fold',0),('grp','frm',0),('grp','glo',0),('grp','grp',0),('grp','grpr',0),('grp','htlm',0),('grp','iass',0),('grp','itgr',0),('grp','lm',0),('grp','lso',0),('grp','lti',0),('grp','mcst',0),('grp','mep',0),('grp','poll',0),('grp','prtt',0),('grp','qpl',0),('grp','rcat',0),('grp','rcrs',0),('grp','rgrp',0),('grp','sahs',0),('grp','sess',0),('grp','spl',0),('grp','svy',0),('grp','tst',0),('grp','webr',0),('grp','wiki',0),('lngf','lng',0),('lso','copa',0),('lso','exc',0),('lso','file',0),('lso','htlm',0),('lso','iass',0),('lso','lm',0),('lso','rolf',1),('lso','sahs',0),('lso','svy',0),('lso','tst',0),('orgu','orgu',0),('prg','crsr',1),('prg','prg',0),('prg','prgr',0),('prg','rolf',1),('recf','bibl',0),('recf','blog',0),('recf','cat',0),('recf','catr',0),('recf','chtr',0),('recf','cmix',0),('recf','copa',0),('recf','crs',0),('recf','crsr',0),('recf','dcl',0),('recf','exc',0),('recf','file',0),('recf','fold',0),('recf','frm',0),('recf','glo',0),('recf','grp',0),('recf','grpr',0),('recf','htlm',0),('recf','itgr',0),('recf','lm',0),('recf','lti',0),('recf','mcst',0),('recf','mep',0),('recf','poll',0),('recf','prg',0),('recf','prgr',0),('recf','prtt',0),('recf','qpl',0),('recf','sahs',0),('recf','sess',0),('recf','spl',0),('recf','svy',0),('recf','tst',0),('recf','webr',0),('recf','wiki',0),('rolf','role',0),('rolf','rolt',0),('root','adm',1),('root','bibl',0),('root','blog',0),('root','book',0),('root','cat',0),('root','catr',0),('root','chtr',0),('root','cmix',0),('root','copa',0),('root','crs',0),('root','crsr',0),('root','dcl',0),('root','exc',0),('root','file',0),('root','frm',0),('root','glo',0),('root','grp',0),('root','grpr',0),('root','htlm',0),('root','iass',0),('root','itgr',0),('root','lm',0),('root','lso',0),('root','lti',0),('root','mcst',0),('root','mep',0),('root','poll',0),('root','prg',0),('root','prgr',0),('root','prtt',0),('root','qpl',0),('root','rcat',0),('root','rcrs',0),('root','rfil',0),('root','rglo',0),('root','rgrp',0),('root','rlm',0),('root','rtst',0),('root','rwik',0),('root','sahs',0),('root','spl',0),('root','svy',0),('root','tst',0),('root','webr',0),('root','wiki',0),('skmg','skee',1),('stys','sty',0),('tala','tals',0),('tala','talt',0),('tals','etal',0),('usrf','usr',0),('wfld','blog',0),('wfld','cmxv',0),('wfld','crsv',0),('wfld','excv',0),('wfld','file',0),('wfld','ltiv',0),('wfld','scov',0),('wfld','tstv',0),('wfld','webr',0),('wfld','wfld',0),('wsrt','blog',0),('wsrt','cmxv',0),('wsrt','crsv',0),('wsrt','excv',0),('wsrt','file',0),('wsrt','ltiv',0),('wsrt','scov',0),('wsrt','tstv',0),('wsrt','webr',0),('wsrt','wfld',0);
/*!40000 ALTER TABLE `il_object_subobj` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_orgu_authority`
--

DROP TABLE IF EXISTS `il_orgu_authority`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_orgu_authority` (
  `id` bigint NOT NULL DEFAULT '0',
  `over` tinyint DEFAULT NULL,
  `scope` tinyint DEFAULT NULL,
  `position_id` tinyint DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_orgu_authority`
--

LOCK TABLES `il_orgu_authority` WRITE;
/*!40000 ALTER TABLE `il_orgu_authority` DISABLE KEYS */;
INSERT INTO `il_orgu_authority` VALUES (1,1,1,2);
/*!40000 ALTER TABLE `il_orgu_authority` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_orgu_authority_seq`
--

DROP TABLE IF EXISTS `il_orgu_authority_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_orgu_authority_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_orgu_authority_seq`
--

LOCK TABLES `il_orgu_authority_seq` WRITE;
/*!40000 ALTER TABLE `il_orgu_authority_seq` DISABLE KEYS */;
INSERT INTO `il_orgu_authority_seq` VALUES (1);
/*!40000 ALTER TABLE `il_orgu_authority_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_orgu_op_contexts`
--

DROP TABLE IF EXISTS `il_orgu_op_contexts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_orgu_op_contexts` (
  `id` bigint NOT NULL DEFAULT '0',
  `context` varchar(16) DEFAULT NULL,
  `parent_context_id` bigint DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_orgu_op_contexts`
--

LOCK TABLES `il_orgu_op_contexts` WRITE;
/*!40000 ALTER TABLE `il_orgu_op_contexts` DISABLE KEYS */;
INSERT INTO `il_orgu_op_contexts` VALUES (1,'object',0),(2,'iass',1),(3,'crs',1),(4,'grp',1),(5,'tst',1),(6,'exc',1),(7,'svy',1),(8,'prg',1),(9,'usrf',1),(10,'etal',1);
/*!40000 ALTER TABLE `il_orgu_op_contexts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_orgu_op_contexts_seq`
--

DROP TABLE IF EXISTS `il_orgu_op_contexts_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_orgu_op_contexts_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_orgu_op_contexts_seq`
--

LOCK TABLES `il_orgu_op_contexts_seq` WRITE;
/*!40000 ALTER TABLE `il_orgu_op_contexts_seq` DISABLE KEYS */;
INSERT INTO `il_orgu_op_contexts_seq` VALUES (10);
/*!40000 ALTER TABLE `il_orgu_op_contexts_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_orgu_operations`
--

DROP TABLE IF EXISTS `il_orgu_operations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_orgu_operations` (
  `operation_id` bigint NOT NULL DEFAULT '0',
  `operation_string` varchar(127) DEFAULT NULL,
  `description` varchar(512) DEFAULT NULL,
  `list_order` bigint DEFAULT NULL,
  `context_id` bigint DEFAULT NULL,
  PRIMARY KEY (`operation_id`),
  KEY `i1_idx` (`operation_string`),
  KEY `i3_idx` (`list_order`),
  KEY `i4_idx` (`context_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_orgu_operations`
--

LOCK TABLES `il_orgu_operations` WRITE;
/*!40000 ALTER TABLE `il_orgu_operations` DISABLE KEYS */;
INSERT INTO `il_orgu_operations` VALUES (1,'read_learning_progress','Read the learning Progress of a User',0,3),(2,'read_learning_progress','Read the learning Progress of a User',0,4),(3,'read_learning_progress','Read the learning Progress of a User',0,2),(4,'read_learning_progress','Read the learning Progress of a User',0,6),(5,'read_learning_progress','Read the learning Progress of a User',0,7),(6,'manage_members','Edit Members in a course',0,3),(7,'manage_members','Edit Members in a group',0,4),(8,'edit_submissions_grades','',0,6),(9,'access_results','',0,7),(10,'write_learning_progress','Write the learning Progress of a User',0,2),(11,'access_enrolments','Access Enrolments in a course',0,3),(12,'read_learning_progress','Read Test Participants Learning Progress',0,5),(13,'access_results','Access Test Participants Results',0,5),(14,'manage_participants','Manage Test Participants',0,5),(15,'score_participants','Score Test Participants',0,5),(16,'view_members','View Memberships of other users',0,8),(17,'read_learning_progress','View learning progress of other users',0,8),(18,'view_individual_plan','View Individual Plans of other users',0,8),(19,'edit_individual_plan','Edit Individual Plans of other users',0,8),(20,'manage_members','Manage Memberships of other users',0,8),(21,'edit_user_accounts','Edit User in User Administration',0,9),(22,'view_certificates','Read the certificates of a User',0,5),(23,'view_certificates','Read the certificates of a User',0,6),(24,'view_certificates','Read the certificates of a User',0,3),(25,'view_competences','Read the competences of a User',0,5),(26,'view_competences','Read the competences of a User',0,4),(27,'view_competences','Read the competences of a User',0,3),(28,'view_competences','Read the competences of a User',0,7),(29,'read_employee_talk','Read Employee Talk',0,10),(30,'create_employee_talk','Create Employee Talk',0,10),(31,'edit_employee_talk','Edit Employee Talk (not only own)',0,10);
/*!40000 ALTER TABLE `il_orgu_operations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_orgu_operations_seq`
--

DROP TABLE IF EXISTS `il_orgu_operations_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_orgu_operations_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_orgu_operations_seq`
--

LOCK TABLES `il_orgu_operations_seq` WRITE;
/*!40000 ALTER TABLE `il_orgu_operations_seq` DISABLE KEYS */;
INSERT INTO `il_orgu_operations_seq` VALUES (31);
/*!40000 ALTER TABLE `il_orgu_operations_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_orgu_permissions`
--

DROP TABLE IF EXISTS `il_orgu_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_orgu_permissions` (
  `id` bigint NOT NULL DEFAULT '0',
  `context_id` bigint DEFAULT NULL,
  `operations` varchar(256) DEFAULT NULL,
  `parent_id` bigint DEFAULT NULL,
  `position_id` bigint DEFAULT NULL,
  `protected` tinyint DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `co_idx` (`context_id`),
  KEY `po_idx` (`position_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_orgu_permissions`
--

LOCK TABLES `il_orgu_permissions` WRITE;
/*!40000 ALTER TABLE `il_orgu_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_orgu_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_orgu_permissions_seq`
--

DROP TABLE IF EXISTS `il_orgu_permissions_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_orgu_permissions_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_orgu_permissions_seq`
--

LOCK TABLES `il_orgu_permissions_seq` WRITE;
/*!40000 ALTER TABLE `il_orgu_permissions_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_orgu_permissions_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_orgu_positions`
--

DROP TABLE IF EXISTS `il_orgu_positions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_orgu_positions` (
  `id` bigint NOT NULL DEFAULT '0',
  `title` varchar(512) DEFAULT NULL,
  `description` varchar(4000) DEFAULT NULL,
  `core_position` tinyint DEFAULT NULL,
  `core_identifier` tinyint DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_orgu_positions`
--

LOCK TABLES `il_orgu_positions` WRITE;
/*!40000 ALTER TABLE `il_orgu_positions` DISABLE KEYS */;
INSERT INTO `il_orgu_positions` VALUES (1,'Employees','Employees of a OrgUnit',1,1),(2,'Superiors','Superiors of a OrgUnit',1,2);
/*!40000 ALTER TABLE `il_orgu_positions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_orgu_positions_seq`
--

DROP TABLE IF EXISTS `il_orgu_positions_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_orgu_positions_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_orgu_positions_seq`
--

LOCK TABLES `il_orgu_positions_seq` WRITE;
/*!40000 ALTER TABLE `il_orgu_positions_seq` DISABLE KEYS */;
INSERT INTO `il_orgu_positions_seq` VALUES (2);
/*!40000 ALTER TABLE `il_orgu_positions_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_orgu_ua`
--

DROP TABLE IF EXISTS `il_orgu_ua`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_orgu_ua` (
  `id` bigint NOT NULL DEFAULT '0',
  `user_id` bigint DEFAULT NULL,
  `position_id` bigint DEFAULT NULL,
  `orgu_id` bigint DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `pi_idx` (`position_id`),
  KEY `ui_idx` (`user_id`),
  KEY `oi_idx` (`orgu_id`),
  KEY `po_idx` (`position_id`,`orgu_id`),
  KEY `pu_idx` (`position_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_orgu_ua`
--

LOCK TABLES `il_orgu_ua` WRITE;
/*!40000 ALTER TABLE `il_orgu_ua` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_orgu_ua` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_orgu_ua_seq`
--

DROP TABLE IF EXISTS `il_orgu_ua_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_orgu_ua_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_orgu_ua_seq`
--

LOCK TABLES `il_orgu_ua_seq` WRITE;
/*!40000 ALTER TABLE `il_orgu_ua_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_orgu_ua_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_plugin`
--

DROP TABLE IF EXISTS `il_plugin`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_plugin` (
  `last_update_version` char(10) DEFAULT NULL,
  `active` tinyint DEFAULT NULL,
  `db_version` int NOT NULL DEFAULT '0',
  `plugin_id` varchar(20) NOT NULL,
  PRIMARY KEY (`plugin_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_plugin`
--

LOCK TABLES `il_plugin` WRITE;
/*!40000 ALTER TABLE `il_plugin` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_plugin` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_poll`
--

DROP TABLE IF EXISTS `il_poll`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_poll` (
  `id` int NOT NULL DEFAULT '0',
  `question` varchar(1000) DEFAULT NULL,
  `image` varchar(1000) DEFAULT NULL,
  `view_results` tinyint NOT NULL DEFAULT '3',
  `period` tinyint NOT NULL DEFAULT '0',
  `period_begin` int DEFAULT '0',
  `period_end` int DEFAULT '0',
  `max_answers` tinyint NOT NULL DEFAULT '1',
  `result_sort` tinyint NOT NULL DEFAULT '0',
  `non_anon` tinyint NOT NULL DEFAULT '0',
  `show_results_as` tinyint NOT NULL DEFAULT '1',
  `migrated` int DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_poll`
--

LOCK TABLES `il_poll` WRITE;
/*!40000 ALTER TABLE `il_poll` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_poll` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_poll_answer`
--

DROP TABLE IF EXISTS `il_poll_answer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_poll_answer` (
  `id` int NOT NULL DEFAULT '0',
  `poll_id` int NOT NULL DEFAULT '0',
  `answer` varchar(1000) DEFAULT NULL,
  `pos` smallint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_poll_answer`
--

LOCK TABLES `il_poll_answer` WRITE;
/*!40000 ALTER TABLE `il_poll_answer` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_poll_answer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_poll_answer_seq`
--

DROP TABLE IF EXISTS `il_poll_answer_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_poll_answer_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_poll_answer_seq`
--

LOCK TABLES `il_poll_answer_seq` WRITE;
/*!40000 ALTER TABLE `il_poll_answer_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_poll_answer_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_poll_image`
--

DROP TABLE IF EXISTS `il_poll_image`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_poll_image` (
  `object_id` bigint NOT NULL DEFAULT '0',
  `rid` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_poll_image`
--

LOCK TABLES `il_poll_image` WRITE;
/*!40000 ALTER TABLE `il_poll_image` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_poll_image` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_poll_vote`
--

DROP TABLE IF EXISTS `il_poll_vote`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_poll_vote` (
  `user_id` int NOT NULL DEFAULT '0',
  `poll_id` int NOT NULL DEFAULT '0',
  `answer_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`user_id`,`poll_id`,`answer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_poll_vote`
--

LOCK TABLES `il_poll_vote` WRITE;
/*!40000 ALTER TABLE `il_poll_vote` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_poll_vote` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_qpl_qst_fq_res`
--

DROP TABLE IF EXISTS `il_qpl_qst_fq_res`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_qpl_qst_fq_res` (
  `result_id` int NOT NULL DEFAULT '0',
  `question_fi` int NOT NULL DEFAULT '0',
  `result` varchar(255) DEFAULT NULL,
  `range_min` double NOT NULL DEFAULT '0',
  `range_max` double NOT NULL DEFAULT '0',
  `tolerance` double NOT NULL DEFAULT '0',
  `unit_fi` int NOT NULL DEFAULT '0',
  `formula` longtext,
  `rating_simple` int NOT NULL DEFAULT '1',
  `rating_sign` double NOT NULL DEFAULT '0.25',
  `rating_value` double NOT NULL DEFAULT '0.25',
  `rating_unit` double NOT NULL DEFAULT '0.25',
  `points` double NOT NULL DEFAULT '0',
  `resprecision` int NOT NULL DEFAULT '0',
  `result_type` int NOT NULL DEFAULT '0',
  `range_min_txt` varchar(4000) DEFAULT NULL,
  `range_max_txt` varchar(4000) DEFAULT NULL,
  PRIMARY KEY (`result_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_qpl_qst_fq_res`
--

LOCK TABLES `il_qpl_qst_fq_res` WRITE;
/*!40000 ALTER TABLE `il_qpl_qst_fq_res` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_qpl_qst_fq_res` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_qpl_qst_fq_res_seq`
--

DROP TABLE IF EXISTS `il_qpl_qst_fq_res_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_qpl_qst_fq_res_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_qpl_qst_fq_res_seq`
--

LOCK TABLES `il_qpl_qst_fq_res_seq` WRITE;
/*!40000 ALTER TABLE `il_qpl_qst_fq_res_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_qpl_qst_fq_res_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_qpl_qst_fq_res_unit`
--

DROP TABLE IF EXISTS `il_qpl_qst_fq_res_unit`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_qpl_qst_fq_res_unit` (
  `result_unit_id` int NOT NULL DEFAULT '0',
  `result` varchar(255) DEFAULT NULL,
  `question_fi` int NOT NULL DEFAULT '0',
  `unit_fi` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`result_unit_id`),
  KEY `i1_idx` (`question_fi`,`unit_fi`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_qpl_qst_fq_res_unit`
--

LOCK TABLES `il_qpl_qst_fq_res_unit` WRITE;
/*!40000 ALTER TABLE `il_qpl_qst_fq_res_unit` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_qpl_qst_fq_res_unit` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_qpl_qst_fq_res_unit_seq`
--

DROP TABLE IF EXISTS `il_qpl_qst_fq_res_unit_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_qpl_qst_fq_res_unit_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_qpl_qst_fq_res_unit_seq`
--

LOCK TABLES `il_qpl_qst_fq_res_unit_seq` WRITE;
/*!40000 ALTER TABLE `il_qpl_qst_fq_res_unit_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_qpl_qst_fq_res_unit_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_qpl_qst_fq_ucat`
--

DROP TABLE IF EXISTS `il_qpl_qst_fq_ucat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_qpl_qst_fq_ucat` (
  `category_id` int NOT NULL DEFAULT '0',
  `category` varchar(255) DEFAULT NULL,
  `question_fi` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_qpl_qst_fq_ucat`
--

LOCK TABLES `il_qpl_qst_fq_ucat` WRITE;
/*!40000 ALTER TABLE `il_qpl_qst_fq_ucat` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_qpl_qst_fq_ucat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_qpl_qst_fq_ucat_seq`
--

DROP TABLE IF EXISTS `il_qpl_qst_fq_ucat_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_qpl_qst_fq_ucat_seq` (
  `sequence` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_qpl_qst_fq_ucat_seq`
--

LOCK TABLES `il_qpl_qst_fq_ucat_seq` WRITE;
/*!40000 ALTER TABLE `il_qpl_qst_fq_ucat_seq` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_qpl_qst_fq_ucat_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_qpl_qst_fq_unit`
--

DROP TABLE IF EXISTS `il_qpl_qst_fq_unit`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_qpl_qst_fq_unit` (
  `unit_id` int NOT NULL DEFAULT '0',
  `unit` varchar(255) DEFAULT NULL,
  `factor` double NOT NULL DEFAULT '0',
  `baseunit_fi` int NOT NULL DEFAULT '0',
  `category_fi` int NOT NULL DEFAULT '0',
  `sequence` int NOT NULL DEFAULT '0',
  `question_fi` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`unit_id`),
  KEY `i2_idx` (`question_fi`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `il_qpl_qst_fq_unit`
--

LOCK TABLES `il_qpl_qst_fq_unit` WRITE;
/*!40000 ALTER TABLE `il_qpl_qst_fq_unit` DISABLE KEYS */;
/*!40000 ALTER TABLE `il_qpl_qst_fq_unit` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `il_qpl_qst_fq_unit_seq`
--

DROP TABLE IF EXISTS `il_qpl_qst_fq_unit_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `il_qpl_qst_fq_unit_seq` (
  `sequence` int NOT NULL A
Showing 512.00 KB of 3.80 MB. Use Edit/Download for full content.

Directory Contents

Dirs: 6 × Files: 21

Name Size Perms Modified Actions
images DIR
- drwxr-xr-x 2026-03-13 21:04:19
Edit Download
php53 DIR
- drwxr-xr-x 2026-03-13 21:04:17
Edit Download
php56 DIR
- drwxr-xr-x 2026-03-13 21:04:19
Edit Download
php71 DIR
- drwxr-xr-x 2026-03-13 21:04:19
Edit Download
php81 DIR
- drwxr-xr-x 2026-03-13 21:04:17
Edit Download
php82 DIR
- drwxr-xr-x 2026-03-13 21:04:17
Edit Download
46 B lrw-r--r-- 2025-07-22 09:15:18
Edit Download
73 B lrw-r--r-- 2026-01-21 12:57:08
Edit Download
701 B lrw-r--r-- 2024-05-02 12:46:16
Edit Download
894 B lrw-r--r-- 2025-07-22 09:15:18
Edit Download
67.62 KB lrw-r--r-- 2026-03-13 13:42:50
Edit Download
92 B lrw-r--r-- 2026-03-13 13:42:50
Edit Download
4.43 KB lrw-r--r-- 2026-03-13 13:44:48
Edit Download
433 B lrw-r--r-- 2021-12-23 11:54:36
Edit Download
8.84 KB lrw-r--r-- 2026-03-13 13:44:48
Edit Download
250 B lrw-r--r-- 2025-07-22 09:15:18
Edit Download
1.17 KB lrw-r--r-- 2026-03-13 13:42:50
Edit Download
3.80 MB lrw-r--r-- 2026-03-13 13:42:50
Edit Download
145.38 MB lrw-r--r-- 2026-03-13 13:42:50
Edit Download
3.64 KB lrw-r--r-- 2026-03-13 13:44:48
Edit Download
4.63 KB lrw-r--r-- 2026-03-13 13:42:50
Edit Download
921 B lrw-r--r-- 2021-12-23 11:54:36
Edit Download
1.55 KB lrw-r--r-- 2021-12-23 11:54:36
Edit Download
24 B lrw-r--r-- 2025-11-06 07:20:08
Edit Download
7.44 KB lrw-r--r-- 2026-03-13 13:44:48
Edit Download
2.85 KB lrw-r--r-- 2025-09-11 11:33:24
Edit Download
519 B lrw-r--r-- 2021-12-23 11:54:36
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).