Skip to content

Commit

Permalink
Update setup.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
tmalahie committed Oct 24, 2022
1 parent 96d7756 commit 1a3e7cf
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docker/php/scripts/setup.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 1a3e7cf

Please sign in to comment.