From 90d4dad6ba873f18e19650c77573b17d391e6511 Mon Sep 17 00:00:00 2001 From: jsatoh Date: Tue, 6 May 2014 00:59:10 +0000 Subject: [PATCH] 2014-05-06 Junichi Satoh * extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql: Added missing '`'. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9871 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 4 ++++ .../extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) 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'); -- ---------------------------------------------------------------------