Add: notes are now recorded with player's playtime, for comparison

This commit is contained in:
Kyep
2019-12-16 17:20:07 -08:00
parent a4e6dba738
commit 91a63e97a7
4 changed files with 37 additions and 18 deletions
+3
View File
@@ -19,3 +19,6 @@ CREATE TABLE `connection_log` (
`computerid` varchar(32) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
# Add the 'crew_playtime' field to the 'notes' table, which gives admins some idea of how many hours have passed for a player since they got a note
ALTER TABLE `notes` ADD `crew_playtime` mediumint(8) UNSIGNED DEFAULT '0' AFTER `server`;