2013-05-22 Hirofumi Kosaka <kosaka@rworks.jp>

* pandoradb.sql: (workaround to avoid mysql's warning
	'Specified key was too long; max key length is 767 bytes'
	(warning code=1071).



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8187 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
hkosaka 2013-05-22 10:45:16 +00:00
parent ea33abc1af
commit 4a3a452499
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2013-05-22 Hirofumi Kosaka <kosaka@rworks.jp>
* pandoradb.sql: (workaround to avoid mysql's warning
'Specified key was too long; max key length is 767 bytes'
(warning code=1071).
2013-05-21 Miguel de Dios <miguel.dedios@artica.es>
* include/styles/datepicker.css,

View File

@ -81,7 +81,7 @@ CREATE TABLE IF NOT EXISTS `tagente` (
`update_module_count` tinyint(1) NOT NULL default '0',
`update_alert_count` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`id_agente`),
KEY `nombre` (`nombre`),
KEY `nombre` (`nombre`(255)),
KEY `direccion` (`direccion`),
KEY `disabled` (`disabled`),
KEY `id_grupo` (`id_grupo`)