Participants can be of multiple types (e.g. agent and terminal), therefore the participant type must be stored in the times data record in order to assign times correctly during display and to differentiate in calculation.
349 lines
15 KiB
SQL
349 lines
15 KiB
SQL
CREATE DATABASE IF NOT EXISTS `bremen_calling` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
|
|
USE `bremen_calling`;
|
|
-- MySQL dump 10.13 Distrib 8.0.33, for Win64 (x86_64)
|
|
--
|
|
-- Host: localhost Database: bremen_calling
|
|
-- ------------------------------------------------------
|
|
-- Server version 8.0.34-0ubuntu0.22.04.1
|
|
|
|
/*!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 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 `berth`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `berth`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `berth` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(128) DEFAULT NULL COMMENT 'Descriptive name',
|
|
`participant_id` int unsigned DEFAULT NULL COMMENT 'If berth belongs to a participant, reference it here',
|
|
`lock` bit(1) DEFAULT NULL COMMENT 'The lock must be used',
|
|
`created` datetime DEFAULT CURRENT_TIMESTAMP,
|
|
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|
`deleted` bit(1) DEFAULT b'0',
|
|
PRIMARY KEY (`id`),
|
|
KEY `FK_BERTH_PART` (`participant_id`),
|
|
CONSTRAINT `FK_BERTH_PART` FOREIGN KEY (`participant_id`) REFERENCES `participant` (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=195 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Berth of ship for a ship call';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `notification`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `notification`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `notification` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`times_id` int unsigned NOT NULL COMMENT 'times record that caused the notification',
|
|
`participant_id` int unsigned NOT NULL COMMENT 'participant ref',
|
|
`acknowledged` bit(1) DEFAULT b'0' COMMENT 'true if UI acknowledged',
|
|
`level` tinyint DEFAULT NULL COMMENT 'severity of the notification',
|
|
`type` tinyint DEFAULT NULL COMMENT 'Email/UI/Other',
|
|
`message` varchar(256) DEFAULT NULL COMMENT 'individual message',
|
|
`created` datetime DEFAULT CURRENT_TIMESTAMP,
|
|
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`),
|
|
KEY `FK_NOT_TIMES` (`times_id`),
|
|
KEY `FK_NOT_PART` (`participant_id`),
|
|
CONSTRAINT `FK_NOT_PART` FOREIGN KEY (`participant_id`) REFERENCES `participant` (`id`),
|
|
CONSTRAINT `FK_NOT_TIMES` FOREIGN KEY (`times_id`) REFERENCES `times` (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='An entry corresponds to an alarm given by a violated rule during times update';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `participant`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `participant`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `participant` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(128) DEFAULT NULL,
|
|
`street` varchar(128) DEFAULT NULL,
|
|
`postal_code` varchar(5) DEFAULT NULL,
|
|
`city` varchar(64) DEFAULT NULL,
|
|
`type` int DEFAULT NULL,
|
|
`flags` int unsigned DEFAULT NULL,
|
|
`created` datetime DEFAULT CURRENT_TIMESTAMP,
|
|
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|
`deleted` bit(1) DEFAULT b'0',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=136 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='An organization taking part';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `role`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `role`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `role` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(50) NOT NULL DEFAULT '0' COMMENT 'unique role name',
|
|
`description` varchar(255) DEFAULT '0' COMMENT 'role description',
|
|
`created` datetime DEFAULT CURRENT_TIMESTAMP,
|
|
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `name` (`name`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='logical group of securables for one or more user';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `role_securable_map`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `role_securable_map`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `role_securable_map` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`role_id` int unsigned NOT NULL,
|
|
`securable_id` int unsigned NOT NULL,
|
|
`created` datetime DEFAULT CURRENT_TIMESTAMP,
|
|
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`),
|
|
KEY `FK_ROLE_SECURABLE` (`role_id`),
|
|
KEY `FK_SECURABLE_ROLE` (`securable_id`),
|
|
CONSTRAINT `FK_ROLE_SECURABLE` FOREIGN KEY (`role_id`) REFERENCES `role` (`id`),
|
|
CONSTRAINT `FK_SECURABLE_ROLE` FOREIGN KEY (`securable_id`) REFERENCES `securable` (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Assigns securables to roles';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `securable`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `securable`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `securable` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(50) NOT NULL DEFAULT '',
|
|
`created` datetime DEFAULT CURRENT_TIMESTAMP,
|
|
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `name` (`name`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Actual permission on a single(!) feature or operation';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `ship`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `ship`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `ship` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(64) DEFAULT NULL,
|
|
`imo` int DEFAULT NULL,
|
|
`callsign` varchar(8) DEFAULT NULL,
|
|
`participant_id` int unsigned DEFAULT NULL,
|
|
`length` float DEFAULT NULL,
|
|
`width` float DEFAULT NULL,
|
|
`is_tug` bit(1) DEFAULT b'0',
|
|
`bollard_pull` int DEFAULT NULL,
|
|
`eni` int DEFAULT NULL,
|
|
`created` datetime DEFAULT CURRENT_TIMESTAMP,
|
|
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|
`deleted` bit(1) DEFAULT b'0',
|
|
PRIMARY KEY (`id`),
|
|
KEY `FK_SHIP_PARTICIPANT` (`participant_id`),
|
|
CONSTRAINT `FK_SHIP_PARTICIPANT` FOREIGN KEY (`participant_id`) REFERENCES `participant` (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `shipcall`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `shipcall`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `shipcall` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`ship_id` int unsigned DEFAULT NULL,
|
|
`type` tinyint DEFAULT NULL,
|
|
`eta` datetime DEFAULT NULL,
|
|
`voyage` varchar(16) DEFAULT NULL,
|
|
`etd` datetime DEFAULT NULL,
|
|
`arrival_berth_id` int unsigned DEFAULT NULL,
|
|
`departure_berth_id` int unsigned DEFAULT NULL,
|
|
`tug_required` bit(1) DEFAULT NULL,
|
|
`pilot_required` bit(1) DEFAULT NULL,
|
|
`flags` int unsigned DEFAULT '0',
|
|
`pier_side` bit(1) DEFAULT NULL,
|
|
`bunkering` bit(1) DEFAULT NULL,
|
|
`replenishing_terminal` bit(1) DEFAULT NULL,
|
|
`replenishing_lock` bit(1) DEFAULT NULL,
|
|
`draft` float DEFAULT NULL,
|
|
`tidal_window_from` datetime DEFAULT NULL,
|
|
`tidal_window_to` datetime DEFAULT NULL,
|
|
`rain_sensitive_cargo` bit(1) DEFAULT b'0',
|
|
`recommended_tugs` int DEFAULT '0',
|
|
`anchored` bit(1) DEFAULT NULL,
|
|
`moored_lock` bit(1) DEFAULT NULL,
|
|
`canceled` bit(1) DEFAULT NULL,
|
|
`created` datetime DEFAULT CURRENT_TIMESTAMP,
|
|
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`),
|
|
KEY `FK_SHIPCALL_SHIP` (`ship_id`),
|
|
KEY `FK_SHIPCALL_BERTH_ARRIVAL` (`arrival_berth_id`),
|
|
KEY `FK_SHIPCALL_BERTH_DEPARTURE` (`departure_berth_id`),
|
|
CONSTRAINT `FK_SHIPCALL_BERTH_ARRIVAL` FOREIGN KEY (`arrival_berth_id`) REFERENCES `berth` (`id`),
|
|
CONSTRAINT `FK_SHIPCALL_BERTH_DEPARTURE` FOREIGN KEY (`departure_berth_id`) REFERENCES `berth` (`id`),
|
|
CONSTRAINT `FK_SHIPCALL_SHIP` FOREIGN KEY (`ship_id`) REFERENCES `ship` (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Incoming, outgoing or moving to another berth';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `shipcall_participant_map`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `shipcall_participant_map`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `shipcall_participant_map` (
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
`shipcall_id` int unsigned DEFAULT NULL,
|
|
`participant_id` int unsigned DEFAULT NULL,
|
|
`created` datetime DEFAULT CURRENT_TIMESTAMP,
|
|
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`),
|
|
KEY `FK_MAP_PARTICIPANT_SHIPCALL` (`shipcall_id`),
|
|
KEY `FK_MAP_SHIPCALL_PARTICIPANT` (`participant_id`),
|
|
CONSTRAINT `FK_MAP_PARTICIPANT_SHIPCALL` FOREIGN KEY (`shipcall_id`) REFERENCES `shipcall` (`id`),
|
|
CONSTRAINT `FK_MAP_SHIPCALL_PARTICIPANT` FOREIGN KEY (`participant_id`) REFERENCES `participant` (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Associates a participant with a shipcall';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `shipcall_tug_map`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `shipcall_tug_map`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `shipcall_tug_map` (
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
`shipcall_id` int unsigned NOT NULL COMMENT 'Ref to ship call',
|
|
`ship_id` int unsigned NOT NULL COMMENT 'Ref to ship (that is a tug)',
|
|
`created` datetime DEFAULT CURRENT_TIMESTAMP,
|
|
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`),
|
|
KEY `FK_SCT_SHIP` (`ship_id`),
|
|
KEY `FK_SCT_SHIPCALL` (`shipcall_id`),
|
|
CONSTRAINT `FK_SCT_SHIP` FOREIGN KEY (`ship_id`) REFERENCES `ship` (`id`),
|
|
CONSTRAINT `FK_SCT_SHIPCALL` FOREIGN KEY (`shipcall_id`) REFERENCES `shipcall` (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Mapping table that assigns tugs to a ship call';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `times`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `times`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `times` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`eta_berth` datetime DEFAULT NULL,
|
|
`eta_berth_fixed` bit(1) DEFAULT NULL,
|
|
`etd_berth` datetime DEFAULT NULL,
|
|
`etd_berth_fixed` bit(1) DEFAULT NULL,
|
|
`lock_time` datetime DEFAULT NULL,
|
|
`lock_time_fixed` bit(1) DEFAULT NULL,
|
|
`zone_entry` datetime DEFAULT NULL,
|
|
`zone_entry_fixed` bit(1) DEFAULT NULL,
|
|
`operations_start` datetime DEFAULT NULL,
|
|
`operations_end` datetime DEFAULT NULL,
|
|
`remarks` varchar(512) DEFAULT NULL,
|
|
`shipcall_id` int unsigned NOT NULL,
|
|
`participant_id` int unsigned NOT NULL,
|
|
`created` datetime DEFAULT CURRENT_TIMESTAMP,
|
|
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|
`berth_id` int unsigned DEFAULT NULL,
|
|
`berth_info` varchar(512) DEFAULT NULL,
|
|
`pier_side` bit(1) DEFAULT NULL,
|
|
`participant_type` int unsigned DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `FK_TIME_SHIPCALL` (`shipcall_id`),
|
|
KEY `FK_TIME_PART` (`participant_id`) /*!80000 INVISIBLE */,
|
|
KEY `FK_TIME_BERTH` (`berth_id`) /*!80000 INVISIBLE */,
|
|
CONSTRAINT `FK_TIME_BERTH` FOREIGN KEY (`berth_id`) REFERENCES `berth` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
|
|
CONSTRAINT `FK_TIME_PART` FOREIGN KEY (`participant_id`) REFERENCES `participant` (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='the planned time for the participants work';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `user`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `user`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `user` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`participant_id` int unsigned DEFAULT NULL,
|
|
`first_name` varchar(45) DEFAULT NULL,
|
|
`last_name` varchar(45) DEFAULT NULL,
|
|
`user_name` varchar(45) DEFAULT NULL,
|
|
`user_email` varchar(128) DEFAULT NULL,
|
|
`user_phone` varchar(128) DEFAULT NULL,
|
|
`password_hash` varchar(128) DEFAULT NULL,
|
|
`api_key` varchar(256) DEFAULT NULL,
|
|
`created` datetime DEFAULT CURRENT_TIMESTAMP,
|
|
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`),
|
|
KEY `FK_USER_PART` (`participant_id`),
|
|
CONSTRAINT `FK_USER_PART` FOREIGN KEY (`participant_id`) REFERENCES `participant` (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='member of a participant';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `user_role_map`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `user_role_map`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!50503 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `user_role_map` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`user_id` int unsigned NOT NULL DEFAULT '0',
|
|
`role_id` int unsigned NOT NULL DEFAULT '0',
|
|
`created` datetime DEFAULT CURRENT_TIMESTAMP,
|
|
`modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`),
|
|
KEY `FK_USER_ROLE` (`user_id`),
|
|
KEY `FK_ROLE_USER` (`role_id`),
|
|
CONSTRAINT `FK_ROLE_USER` FOREIGN KEY (`role_id`) REFERENCES `role` (`id`),
|
|
CONSTRAINT `FK_USER_ROLE` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Assigns a user to a role';
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
|
|
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|
|
|
-- Dump completed on 2023-09-05 10:36:12
|