Skip to content
Snippets Groups Projects
Select Git revision
  • bfa5f7644315db508818cf069134473492f88a7e
  • main default protected
  • dev protected
  • f-linkahead-rename
  • f-real-id
  • f-filesystem-import
  • f-filesystem-link
  • f-filesystem-directory
  • f-filesystem-core
  • f-filesystem-cleanup
  • f-filesystem-main
  • f-name
  • keep_changes
  • f-permission-checks-2
  • f-mysql8-tests
  • f-retrieve-history
  • t-distinct-parents
  • v8.1.0
  • v8.0.0
  • v7.0.2
  • v7.0.1
  • v7.0.0
  • v6.0.1
  • v6.0.0
  • v5.0.0
  • v4.1.0
  • v4.0.0
  • v3.0
  • v2.0.30
29 results

config.defaults

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    restore.dump.sql 156.89 KiB
    -- MySQL dump 10.16  Distrib 10.1.38-MariaDB, for debian-linux-gnu (x86_64)
    --
    -- Host: sqldb    Database: caosdb
    -- ------------------------------------------------------
    -- Server version	10.4.2-MariaDB-1:10.4.2+maria~bionic
    
    /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
    /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
    /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
    /*!40101 SET NAMES utf8 */;
    /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
    /*!40103 SET TIME_ZONE='+00:00' */;
    /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
    /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
    /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
    /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
    
    --
    -- Table structure for table `collection_type`
    --
    
    DROP TABLE IF EXISTS `collection_type`;
    /*!40101 SET @saved_cs_client     = @@character_set_client */;
    /*!40101 SET character_set_client = utf8 */;
    CREATE TABLE `collection_type` (
      `domain_id` int(10) unsigned NOT NULL,
      `entity_id` int(10) unsigned NOT NULL,
      `property_id` int(10) unsigned NOT NULL,
      `collection` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
      KEY `domain_id` (`domain_id`,`entity_id`),
      KEY `entity_id` (`entity_id`),
      KEY `property_id` (`property_id`),
      CONSTRAINT `collection_type_domain_id_entity` FOREIGN KEY (`domain_id`) REFERENCES `entities` (`id`),
      CONSTRAINT `collection_type_entity_id_entity` FOREIGN KEY (`entity_id`) REFERENCES `entities` (`id`),
      CONSTRAINT `collection_type_property_id_entity` FOREIGN KEY (`property_id`) REFERENCES `entities` (`id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    /*!40101 SET character_set_client = @saved_cs_client */;
    
    --
    -- Dumping data for table `collection_type`
    --
    
    LOCK TABLES `collection_type` WRITE;
    /*!40000 ALTER TABLE `collection_type` DISABLE KEYS */;
    /*!40000 ALTER TABLE `collection_type` ENABLE KEYS */;
    UNLOCK TABLES;
    
    --
    -- Table structure for table `data_type`
    --
    
    DROP TABLE IF EXISTS `data_type`;
    /*!40101 SET @saved_cs_client     = @@character_set_client */;
    /*!40101 SET character_set_client = utf8 */;
    CREATE TABLE `data_type` (
      `domain_id` int(10) unsigned NOT NULL,
      `entity_id` int(10) unsigned NOT NULL,
      `property_id` int(10) unsigned NOT NULL,
      `datatype` int(10) unsigned NOT NULL,
      UNIQUE KEY `datatype_ukey` (`domain_id`,`entity_id`,`property_id`),
      KEY `name_ov_dom_ent_idx` (`domain_id`,`entity_id`),
      KEY `datatype_forkey_ent` (`entity_id`),
      KEY `datatype_forkey_pro` (`property_id`),
      KEY `datatype_forkey_type` (`datatype`),
      CONSTRAINT `datatype_forkey_dom` FOREIGN KEY (`domain_id`) REFERENCES `entities` (`id`),
      CONSTRAINT `datatype_forkey_ent` FOREIGN KEY (`entity_id`) REFERENCES `entities` (`id`),
      CONSTRAINT `datatype_forkey_pro` FOREIGN KEY (`property_id`) REFERENCES `entities` (`id`),
      CONSTRAINT `datatype_forkey_type` FOREIGN KEY (`datatype`) REFERENCES `entities` (`id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    /*!40101 SET character_set_client = @saved_cs_client */;