pull/217/head
Christophe Vandeplas 2013-07-12 10:18:48 +02:00
parent 2334599f3d
commit 3ff797c14b
1 changed files with 4 additions and 1 deletions

View File

@ -63,7 +63,10 @@ CREATE TABLE IF NOT EXISTS `correlations` (
`private` tinyint(1) NOT NULL,
`date` date NOT NULL,
`info` text COLLATE utf8_bin NOT NULL,
PRIMARY KEY (`id`)
PRIMARY KEY (`id`),
KEY `1_event_id` (`1_event_id`),
KEY `1_attribute_id` (`1_attribute_id`),
KEY `attribute_id` (`attribute_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- --------------------------------------------------------