Add index to Frames table upon new creation

pull/1116/head
Kyle Johnson 2015-10-22 11:25:32 -06:00
parent d0e5dd62b5
commit 746e695448
1 changed files with 1 additions and 0 deletions

View File

@ -244,6 +244,7 @@ CREATE TABLE `Frames` (
`Delta` decimal(8,2) NOT NULL default '0.00',
`Score` smallint(5) unsigned NOT NULL default '0',
PRIMARY KEY (`Id`),
INDEX `EventId_idx` (`EventId ASC`),
KEY `Type` (`Type`),
KEY `TimeStamp` (`TimeStamp`)
) ENGINE=@ZM_MYSQL_ENGINE@;