From ef0f55e2c2da301fac3d44326c49f06f13a78109 Mon Sep 17 00:00:00 2001 From: vanessa gil Date: Wed, 8 Mar 2017 11:44:49 +0100 Subject: [PATCH] added file. --- pandora_console/extras/mr/.gitignore | 2 +- pandora_console/extras/mr/3.sql | 38 ++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 pandora_console/extras/mr/3.sql diff --git a/pandora_console/extras/mr/.gitignore b/pandora_console/extras/mr/.gitignore index 41ac4672e6..4582fd9c1f 100644 --- a/pandora_console/extras/mr/.gitignore +++ b/pandora_console/extras/mr/.gitignore @@ -1,4 +1,4 @@ # Ignorar todo en este directorio -* +# * # Excepto este archivo !.gitignore diff --git a/pandora_console/extras/mr/3.sql b/pandora_console/extras/mr/3.sql new file mode 100644 index 0000000000..43b7c52e4c --- /dev/null +++ b/pandora_console/extras/mr/3.sql @@ -0,0 +1,38 @@ +-- Pandora FMS - the Flexible Monitoring System +-- ============================================ +-- Copyright (c) 2005-2011 Artica Soluciones Tecnológicas, http://www.artica.es +-- Please see http://pandora.sourceforge.net for full contribution list + +-- This program is free software; you can redistribute it and/or +-- modify it under the terms of the GNU General Public License +-- as published by the Free Software Foundation for version 2. +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +-- PLEASE NO NOT USE MULTILINE COMMENTS +-- Because Pandora Installer don't understand them +-- and fails creating database !!! + +-- Priority : 0 - Maintance (grey) +-- Priority : 1 - Low (green) +-- Priority : 2 - Normal (blue) +-- Priority : 3 - Warning (yellow) +-- Priority : 4 - Critical (red) + +-- --------------------------------------------------------------------- +-- Table `ttable_test3` +-- --------------------------------------------------------------------- + +CREATE TABLE IF NOT EXISTS `ttable_test3` ( + `id` int(10) unsigned NOT NULL auto_increment, + `field1` varchar(60) NOT NULL default '', + `field2` int(10) unsigned NOT NULL default '0', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +DROP TABLE ttable_test2;