2014-05-06 Junichi Satoh <junichi@rworks.jp>

* 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
This commit is contained in:
jsatoh 2014-05-06 00:59:10 +00:00
parent 1f71c9ac23
commit 90d4dad6ba
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2014-05-06 Junichi Satoh <junichi@rworks.jp>
* extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql: Added missing '`'.
2014-05-05 Ramon Novoa <rnovoa@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,

View File

@ -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');
-- ---------------------------------------------------------------------