From 730580efebac5511603dad0fb9c6574413f25c86 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Tue, 6 Feb 2018 16:07:09 -0600 Subject: [PATCH] Adds mentor tables --- SQL/mentor.sql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 SQL/mentor.sql diff --git a/SQL/mentor.sql b/SQL/mentor.sql new file mode 100644 index 0000000000..c5fb7f0d83 --- /dev/null +++ b/SQL/mentor.sql @@ -0,0 +1,14 @@ +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; + +CREATE TABLE `mentor` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `ckey` varchar(32) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; \ No newline at end of file