2014-06-01 Miguel de Dios <miguel.dedios@artica.es>

* pandoradb_data.sql: fixed the insertion data of tnews, the lost
	columns.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10070 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2014-06-02 08:25:57 +00:00
parent 788169dc40
commit e46543f02e
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2014-06-01 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb_data.sql: fixed the insertion data of tnews, the lost
columns.
2014-06-01 Junichi Satoh <junichi@rworks.jp> 2014-06-01 Junichi Satoh <junichi@rworks.jp>
* godmode/massive/massive_edit_modules.php: Improved to support * godmode/massive/massive_edit_modules.php: Improved to support

View File

@ -283,8 +283,8 @@ INSERT INTO `tperfil` VALUES (1,'Operator&#x20;&#40;Read&#41;',0,1,0,1,0,0,0,0,0
-- Dumping data for table `tnews` -- Dumping data for table `tnews`
-- --
INSERT INTO `tnews` VALUES (1,'admin','Welcome to Pandora FMS 5.0!','This is the new Pandora FMS Console. A lot of new features have been added since last version. Please read the documentation about it, and feel free to test any option.\r\n\r\nThe Pandora FMS Team.',NOW()), INSERT INTO `tnews` (`id_news`, `author`, `subject`, `text`, `timestamp`) VALUES (1,'admin','Welcome to Pandora FMS 5.0!','This is the new Pandora FMS Console. A lot of new features have been added since last version. Please read the documentation about it, and feel free to test any option.\r\n\r\nThe Pandora FMS Team.',NOW());
(2,'admin','New Pandora FMS Agent Features','Feel free to test our new features for both Windows and Linux agents: Proxy and Broker modes.',NOW()); INSERT INTO `tnews` (`id_news`, `author`, `subject`, `text`, `timestamp`) VALUES (2,'admin','New Pandora FMS Agent Features','Feel free to test our new features for both Windows and Linux agents: Proxy and Broker modes.',NOW());
INSERT INTO tmodule VALUES (1,'Agent&#x20;module'); INSERT INTO tmodule VALUES (1,'Agent&#x20;module');
INSERT INTO tmodule VALUES (2,'Network&#x20;module'); INSERT INTO tmodule VALUES (2,'Network&#x20;module');