mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-09 16:07:40 +00:00
14 lines
398 B
SQL
14 lines
398 B
SQL
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; |