From 3dd2e8b07ba5e801a99132754d2de0026c143d64 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sun, 5 Feb 2017 00:16:35 -0600 Subject: [PATCH] Adds mentor tables to schema (#199) --- SQL/tgstation_schema.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/SQL/tgstation_schema.sql b/SQL/tgstation_schema.sql index 60dcde0fd0..b3fb977044 100644 --- a/SQL/tgstation_schema.sql +++ b/SQL/tgstation_schema.sql @@ -376,4 +376,19 @@ CREATE TABLE `ipintel` ( PRIMARY KEY ( `ip` ) ) ENGINE = INNODB; /*!40101 SET character_set_client = @saved_cs_client */; + +DROP TABLE IF EXISTS `mentor`; +CREATE TABLE `mentor` ( + `ckey` text NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +DROP TABLE IF EXISTS `mentor_memo`; +CREATE TABLE `mentor_memo` ( + `ckey` varchar(32) NOT NULL, + `memotext` text NOT NULL, + `timestamp` datetime NOT NULL, + `last_editor` varchar(32) DEFAULT NULL, + `edits` text, + PRIMARY KEY (`ckey`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- Dump completed on 2013-03-24 18:02:35