Splits up round table initialize, start, end and shutdown (#37665)

For planned change to how TGS initializes server instances ahead of time so rounds aren't tracked as being far longer than they really would be. Similarly end time split for a more accurate round duration.
This commit is contained in:
Jordie
2018-05-15 17:11:39 +10:00
committed by oranges
parent 49db9f8184
commit 37854a5489
7 changed files with 44 additions and 14 deletions

View File

@@ -421,7 +421,9 @@ DROP TABLE IF EXISTS `SS13_round`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SS13_round` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`start_datetime` DATETIME NOT NULL,
`initialize_datetime` DATETIME NOT NULL,
`start_datetime` DATETIME NULL,
`shutdown_datetime` DATETIME NULL,
`end_datetime` DATETIME NULL,
`server_ip` INT(10) UNSIGNED NOT NULL,
`server_port` SMALLINT(5) UNSIGNED NOT NULL,