diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 0b29513ec3..bb9d66bb18 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,7 @@ +2014-05-06 Junichi Satoh + + * extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql: Added missing '`'. + 2014-05-05 Ramon Novoa * extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql, diff --git a/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql b/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql index 3a61a6c22c..f70b7a97ff 100644 --- a/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql @@ -40,9 +40,9 @@ ALTER TABLE tgraph_source MODIFY COLUMN `weight` float(8,3) NOT NULL DEFAULT 0; -- --------------------------------------------------------------------- -- Table `tconfig_os` -- --------------------------------------------------------------------- -INSERT INTO `tconfig_os` (`name`, `description`, icon_name`) VALUES ('Router', 'Generic router', 'so_router.png'); -INSERT INTO `tconfig_os` (`name`, `description`, icon_name`) VALUES ('Switch', 'Generic switch', 'so_switch.png'); -INSERT INTO `tconfig_os` (`name`, `description`, icon_name`) VALUES ('Satellite', 'Satellite agent', 'so_other.png'); +INSERT INTO `tconfig_os` (`name`, `description`, `icon_name`) VALUES ('Router', 'Generic router', 'so_router.png'); +INSERT INTO `tconfig_os` (`name`, `description`, `icon_name`) VALUES ('Switch', 'Generic switch', 'so_switch.png'); +INSERT INTO `tconfig_os` (`name`, `description`, `icon_name`) VALUES ('Satellite', 'Satellite agent', 'so_other.png'); -- ---------------------------------------------------------------------