Multiple Updates (#251)
* Added more error logging to zip expansion * Added more logging * More logging, and archive contents can now be seen in rom info * Bug fixes and caching enhancements * Import path now cleaned after import
This commit is contained in:
5
gaseous-server/Support/Database/MySQL/gaseous-1012.sql
Normal file
5
gaseous-server/Support/Database/MySQL/gaseous-1012.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
ALTER TABLE `Games_Roms`
|
||||
ADD INDEX `id_IdAndLibraryId` (`Id` ASC, `LibraryId` ASC) VISIBLE;
|
||||
|
||||
ALTER TABLE `ServerLogs`
|
||||
ADD INDEX `idx_EventDate` (`EventTime` ASC) VISIBLE;
|
9
gaseous-server/Support/Database/MySQL/gaseous-1013.sql
Normal file
9
gaseous-server/Support/Database/MySQL/gaseous-1013.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE `SearchCache` (
|
||||
`SearchFields` varchar(384) NOT NULL,
|
||||
`SearchString` varchar(128) NOT NULL,
|
||||
`Content` longtext DEFAULT NULL,
|
||||
`LastSearch` datetime DEFAULT NULL,
|
||||
PRIMARY KEY (`SearchFields`,`SearchString`),
|
||||
KEY `idx_SearchString` (`SearchFields`,`SearchString`),
|
||||
KEY `idx_LastSearch` (`LastSearch`)
|
||||
);
|
Reference in New Issue
Block a user