http-service: set session table engine to MEMORY

This commit is contained in:
Adam
2018-12-08 22:27:49 -05:00
parent 5e25397fc6
commit f702a0a4a5

View File

@@ -31,7 +31,7 @@ CREATE TABLE `session` (
PRIMARY KEY (`id`),
UNIQUE KEY `uuid` (`uuid`),
KEY `last` (`last`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
) ENGINE=MEMORY DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;