Merge branch 'nuevos-indices-para-tagente_datos' into 'develop'

Replace the index data_index1 on tagente_datos with a composite index.

See merge request artica/pandorafms!943
This commit is contained in:
nramon 2017-10-30 10:55:22 +01:00
commit 08ffc18deb
1 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ CREATE TABLE IF NOT EXISTS `tagente_datos` (
`id_agente_modulo` int(10) unsigned NOT NULL default '0',
`datos` double(22,5) default NULL,
`utimestamp` bigint(20) default '0',
KEY `data_index1` (`id_agente_modulo`),
KEY `data_index1` (`id_agente_modulo`, `utimestamp`),
KEY `idx_utimestamp` USING BTREE (`utimestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
@ -120,7 +120,7 @@ CREATE TABLE IF NOT EXISTS `tagente_datos_string` (
`id_agente_modulo` int(10) unsigned NOT NULL default '0',
`datos` mediumtext NOT NULL,
`utimestamp` int(20) unsigned NOT NULL default 0,
KEY `data_string_index_1` (`id_agente_modulo`),
KEY `data_string_index_1` (`id_agente_modulo`, `utimestamp`),
KEY `idx_utimestamp` USING BTREE (`utimestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;