diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index 3c414e2b3a..b8dabfdf69 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,8 @@ +2010-11-08 Dario Rodriguez + + * util/pandora_recode_db.pl: Added talert_template, tconfig_os, + talet_actions and ttipo_modulo to encode names fields. + 2010-11-07 Junichi Satoh * Makefile.PL: Added 'INSTALLSITELIB' for FreeBSD. (undefined) diff --git a/pandora_server/util/pandora_recode_db.pl b/pandora_server/util/pandora_recode_db.pl index e0e5092b21..ad07300abb 100755 --- a/pandora_server/util/pandora_recode_db.pl +++ b/pandora_server/util/pandora_recode_db.pl @@ -93,9 +93,11 @@ sub pandora_load_credentials ($) { sub recode_store_tables() { # Storing tables names - my @tables = ('tagente', 'tagente_modulo', 'tserver', 'tmodule', 'tperfil', 'tgrupo', 'tplugin', 'treport', 'tpolicies'); + my @tables = ('tagente', 'tagente_modulo', 'tserver', 'tmodule', 'tperfil', 'tgrupo', 'tplugin', 'treport', 'tpolicies', 'talert_templates', + 'talert_actions', 'ttipo_modulo', 'tconfig_os'); - my @columns = ('nombre', 'nombre', 'name', 'name', 'name', 'nombre', 'name', 'name', 'name'); + my @columns = ('nombre', 'nombre', 'name', 'name', 'name', 'nombre', 'name', 'name', 'name', 'name', + 'name', 'nombre', 'name'); my @data = (\@tables, \@columns);