diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_6.1.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_6.1.mysql.sql index e33f5d0447..1a4947f514 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_6.1.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_6.1.mysql.sql @@ -52,6 +52,10 @@ ALTER TABLE tplanned_downtime_agents ADD COLUMN `manually_disabled` tinyint(1) D -- Table `tlink` -- --------------------------------------------------------------------- UPDATE `tlink` SET `link` = 'http://library.pandorafms.com/' WHERE `name` = 'Module library'; +UPDATE `tlink` SET `name` = 'Enterprise Edition' WHERE `id_link` = 0000000002; +UPDATE `tlink` SET `name` = 'Documentation', `link` = 'http://wiki.pandorafms.com/' WHERE `id_link` = 0000000001; +UPDATE `tlink` SET `link` = 'http://forums.pandorafms.com/index.php?board=22.0' WHERE `id_link` = 0000000004; +UPDATE `tlink` SET `link` = 'https://github.com/pandorafms/pandorafms/issues' WHERE `id_link` = 0000000003; -- --------------------------------------------------------------------- -- Table `tevent_filter` diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_6.1.oracle.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_6.1.oracle.sql index e6a407a6bd..48c5034519 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_6.1.oracle.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_6.1.oracle.sql @@ -51,6 +51,10 @@ ALTER TABLE tplanned_downtime_agents ADD COLUMN manually_disabled NUMBER(5, 0) D -- Table `tlink` -- --------------------------------------------------------------------- UPDATE tlink SET link = 'http://library.pandorafms.com/' WHERE name = 'Module library'; +UPDATE tlink SET name = 'Enterprise Edition' WHERE id_link = 0000000002; +UPDATE tlink SET name = 'Documentation', link = 'http://wiki.pandorafms.com/' WHERE id_link = 0000000001; +UPDATE tlink SET link = 'http://forums.pandorafms.com/index.php?board=22.0' WHERE id_link = 0000000004; +UPDATE tlink SET link = 'https://github.com/pandorafms/pandorafms/issues' WHERE id_link = 0000000003; -- --------------------------------------------------------------------- -- Table `tevent_filter` diff --git a/pandora_console/pandoradb.data.oracle.sql b/pandora_console/pandoradb.data.oracle.sql index ef658dc97c..b403ea840a 100644 --- a/pandora_console/pandoradb.data.oracle.sql +++ b/pandora_console/pandoradb.data.oracle.sql @@ -237,10 +237,10 @@ LOCK TABLE tlink IN EXCLUSIVE MODE; EXECUTE IMMEDIATE 'ALTER TRIGGER tlink_inc DISABLE'; -INSERT INTO tlink VALUES (1,'Pandora FMS Manual','http://wiki.pandorafms.com/?title=Pandora'); -INSERT INTO tlink VALUES (2,'Pandora FMS','http://pandorafms.com'); -INSERT INTO tlink VALUES (3,'Report a bug','{https://sourceforge.net/tracker/?func=add&group_id=155200&atid=794852}'); -INSERT INTO tlink VALUES (4,'Suggest new feature','http://sourceforge.net/tracker/?group_id=155200&atid=794855'); +INSERT INTO tlink VALUES (1,'Documentation','http://wiki.pandorafms.com/'); +INSERT INTO tlink VALUES (2,'Enterprise Edition','http://pandorafms.com'); +INSERT INTO tlink VALUES (3,'Report a bug','{https://github.com/pandorafms/pandorafms/issues}'); +INSERT INTO tlink VALUES (4,'Suggest new feature','http://forums.pandorafms.com/index.php?board=22.0'); INSERT INTO tlink VALUES (5,'Module library','http://library.pandorafms.com/'); -- Update curr val of sequence diff --git a/pandora_console/pandoradb.data.postgreSQL.sql b/pandora_console/pandoradb.data.postgreSQL.sql index 45aaa69078..87f17d9608 100644 --- a/pandora_console/pandoradb.data.postgreSQL.sql +++ b/pandora_console/pandoradb.data.postgreSQL.sql @@ -204,11 +204,11 @@ COMMIT WORK; -- BEGIN WORK; LOCK TABLE "tlink"; -INSERT INTO "tlink" VALUES -(1,'Pandora FMS Manual','http://wiki.pandorafms.com/?title=Pandora'), -(2,'Pandora FMS','http://pandorafms.com'), -(3,'Report a bug','https://sourceforge.net/tracker/?func=add&group_id=155200&atid=794852'), -(4,'Suggest new feature','http://sourceforge.net/tracker/?group_id=155200&atid=794855'), +INSERT INTO "tlink" VALUES +(1,'Documentation','http://wiki.pandorafms.com/'), +(2,'Enterprise Edition','http://pandorafms.com'), +(3,'Report a bug','https://github.com/pandorafms/pandorafms/issues'), +(4,'Suggest new feature','http://forums.pandorafms.com/index.php?board=22.0'), (5,'Module library','http://library.pandorafms.com/'); COMMIT WORK; SELECT setval('tlink_id_link_seq', (SELECT (SELECT MAX(id_link) FROM tlink))); diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql index 5d505fb0ea..46786dbda2 100644 --- a/pandora_console/pandoradb_data.sql +++ b/pandora_console/pandoradb_data.sql @@ -194,11 +194,11 @@ UNLOCK TABLES; LOCK TABLES `tlink` WRITE; -INSERT INTO `tlink` VALUES -(1,'Pandora FMS Manual','http://wiki.pandorafms.com/?title=Pandora'), -(2,'Pandora FMS','http://pandorafms.com'), -(3,'Report a bug','https://sourceforge.net/tracker/?func=add&group_id=155200&atid=794852'), -(4,'Suggest new feature','http://sourceforge.net/tracker/?group_id=155200&atid=794855'), +INSERT INTO `tlink` VALUES +(1,'Documentation','http://wiki.pandorafms.com/'), +(2,'Enterprise Edition','http://pandorafms.com'), +(3,'Report a bug','https://github.com/pandorafms/pandorafms/issues'), +(4,'Suggest new feature','http://forums.pandorafms.com/index.php?board=22.0'), (5,'Module library','http://library.pandorafms.com/'); UNLOCK TABLES;