landsandboat/sql/audit_chat.sql
whasf aed4cecc9a CORE & DATABASE: First part of auditing
Added functionality to log all chat text (tells,says,party,alliance,linkshell,yell) to assist with conflict resolution (of course this has potential for abuse too).
THIS IS OFF BY DEFAULT. You must explicitly turn it on in map_darkstar.conf, even if the value is missing it defaults to not log.
2013-07-26 23:08:45 +00:00

12 lines
327 B
SQL

DROP TABLE IF EXISTS `audit_chat`;
CREATE TABLE `audit_chat` (
`lineID` INT(10) NOT NULL AUTO_INCREMENT,
`speaker` TINYTEXT NOT NULL,
`type` TINYTEXT NOT NULL,
`recipient` TINYTEXT NULL,
`message` TINYTEXT NOT NULL,
`datetime` DATETIME NOT NULL,
PRIMARY KEY (`lineID`)
)
ENGINE=InnoDB DEFAULT CHARSET=utf8;