2014-04-03 Ramon Novoa <rnovoa@artica.es>
* extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql, extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql, extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql: Updated the migration scripts. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9711 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
7887159ba4
commit
e8cce6dc1b
|
@ -1,3 +1,10 @@
|
|||
2014-04-03 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* extras/pandoradb_migrate_5.0.x_to_5.1.mysql.sql,
|
||||
extras/pandoradb_migrate_5.0.x_to_5.1.oracle.sql,
|
||||
extras/pandoradb_migrate_5.0.x_to_5.1.postgreSQL.sql: Updated the migration
|
||||
scripts.
|
||||
|
||||
2014-04-03 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* images/networkmap/so_router.png,
|
||||
|
|
|
@ -37,6 +37,12 @@ UPDATE tconfig SET `value`='#FF6600' WHERE `token`='graph_color3';
|
|||
-- ---------------------------------------------------------------------
|
||||
ALTER TABLE tgraph_source MODIFY COLUMN `weight` float(8,3) NOT NULL DEFAULT 0;
|
||||
|
||||
-- ---------------------------------------------------------------------
|
||||
-- Table `tconfig_os`
|
||||
-- ---------------------------------------------------------------------
|
||||
INSERT INTO `tconfig_os` VALUES (17, 'Router', 'Generic router', 'so_router.png');
|
||||
INSERT INTO `tconfig_os` VALUES (18, 'Switch', 'Generic switch', 'so_switch.png');
|
||||
|
||||
-- ---------------------------------------------------------------------
|
||||
-- Table `tagente_modulo`
|
||||
-- ---------------------------------------------------------------------
|
||||
|
|
|
@ -31,6 +31,12 @@ INSERT INTO tconfig (token, value) VALUES ('graph_color10', '#6666FF');
|
|||
UPDATE tconfig SET value='#FFFF00' WHERE token='graph_color2';
|
||||
UPDATE tconfig SET value='#FF6600' WHERE token='graph_color3';
|
||||
|
||||
-- ---------------------------------------------------------------------
|
||||
-- Table `tconfig_os`
|
||||
-- ---------------------------------------------------------------------
|
||||
INSERT INTO tconfig_os VALUES (17, 'Router', 'Generic router', 'so_router.png');
|
||||
INSERT INTO tconfig_os VALUES (18, 'Switch', 'Generic switch', 'so_switch.png');
|
||||
|
||||
/* 2014/03/18 */
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Table `tmodule_relationship`
|
||||
|
|
|
@ -32,6 +32,12 @@ INSERT INTO "tconfig" ("token", "value") VALUES
|
|||
UPDATE "tconfig" SET "value"='#FFFF00' WHERE "token"='graph_color2';
|
||||
UPDATE "tconfig" SET "value"='#FF6600' WHERE "token"='graph_color3';
|
||||
|
||||
-- ---------------------------------------------------------------------
|
||||
-- Table "tconfig_os"
|
||||
-- ---------------------------------------------------------------------
|
||||
INSERT INTO "tconfig_os" VALUES (17, 'Router', 'Generic router', 'so_router.png');
|
||||
INSERT INTO "tconfig_os" VALUES (18, 'Switch', 'Generic switch', 'so_switch.png');
|
||||
|
||||
/* 2014/03/18 */
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Table `tmodule_relationship`
|
||||
|
|
Loading…
Reference in New Issue