From 1a3e7cf5011347277e03dd3ba0af2fb6cfb37482 Mon Sep 17 00:00:00 2001 From: tmalahie Date: Mon, 24 Oct 2022 21:34:11 +0200 Subject: [PATCH] Update setup.sql --- docker/php/scripts/setup.sql | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docker/php/scripts/setup.sql b/docker/php/scripts/setup.sql index 0dd952f6..167722b9 100644 --- a/docker/php/scripts/setup.sql +++ b/docker/php/scripts/setup.sql @@ -1002,6 +1002,15 @@ CREATE TABLE `mko` ( /*!40101 SET character_set_client = @saved_cs_client */; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mkofficialmsgread` ( + `player` int(11) NOT NULL, + `message` varchar(255) NOT NULL, + `read_date` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`player`,`message`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; +/*!40101 SET character_set_client = @saved_cs_client */; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkp` ( `id` tinyint(2) NOT NULL, `circuit` int(10) NOT NULL,