From defc00a7dd12b8a41e3a8972607a9dbc914cc8bc Mon Sep 17 00:00:00 2001 From: Luciano Almeida Date: Thu, 17 Aug 2017 13:56:18 -0300 Subject: [PATCH] Corrige tabelas de mandato e relatoria Signed-off-by: Luciano Almeida --- sapl/legacy/scripts/fix_tables.sql | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sapl/legacy/scripts/fix_tables.sql b/sapl/legacy/scripts/fix_tables.sql index 3fa095e78..ba1a34efc 100644 --- a/sapl/legacy/scripts/fix_tables.sql +++ b/sapl/legacy/scripts/fix_tables.sql @@ -132,5 +132,13 @@ CALL muda_unidade_tramitacao_cod_parlamentar; -- Corrige cod_parlamentar zero em unidade de tramitação update unidade_tramitacao set cod_parlamentar = NULL where cod_parlamentar = 0; + +-- Corrige cod_nivel_instrucao e tip_situacao_militar zero em parlamentar update parlamentar set cod_nivel_instrucao = NULL where cod_nivel_instrucao = 0; update parlamentar set tip_situacao_militar = NULL where tip_situacao_militar = 0; + +-- Corrige tip_afastamento zero em mandato +update mandato set tip_afastamento = NULL where tip_afastamento = 0; + +-- Corrige tip_fim_relatoria zero em relatoria +update relatoria set tip_fim_relatoria = NULL where tip_fim_relatoria = 0;