drop archived and Frames indexes from Events, as they are useless. Add a StorageId Index

This commit is contained in:
Isaac Connor 2018-01-05 14:39:54 -05:00
parent b7ad24a266
commit 37a40a30d3
1 changed files with 4 additions and 0 deletions

View File

@ -93,3 +93,7 @@ end;
delimiter ; delimiter ;
ALTER TABLE Events DROP INDEX Archived;
ALTER TABLE Events DROP INDEX Frames;
CREATE INDEX Events_StorageId_idx on Events (StorageId);