Add logging of deathgasp last words and suicide stats to the death table

This commit is contained in:
CitadelStationBot
2017-08-20 19:41:58 -05:00
parent 2181449c7d
commit 3862fb5d5e
7 changed files with 39 additions and 9 deletions

View File

@@ -151,6 +151,8 @@ CREATE TABLE `death` (
`toxloss` smallint(5) unsigned NOT NULL,
`cloneloss` smallint(5) unsigned NOT NULL,
`staminaloss` smallint(5) unsigned NOT NULL,
`last_words` varchar(255) DEFAULT NULL,
`suicide` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;