Browse Source

Atualiza para excluir autores e tipo autores

Signed-off-by: Luciano Almeida <lucianoalmeida@interlegis.leg.br>
pull/1245/head
Luciano Almeida 8 years ago
parent
commit
472075682a
  1. 5
      sapl/legacy/scripts/street_sweeper.py

5
sapl/legacy/scripts/street_sweeper.py

@ -7,7 +7,7 @@ import pymysql.cursors
HOST = 'localhost' HOST = 'localhost'
USER = 'root' USER = 'root'
PASSWORD = '' PASSWORD = ''
DB = 'sapl' DB = ''
SELECT_EXCLUIDOS = "SELECT %s FROM %s WHERE ind_excluido = 1 ORDER BY %s" SELECT_EXCLUIDOS = "SELECT %s FROM %s WHERE ind_excluido = 1 ORDER BY %s"
@ -21,6 +21,7 @@ NORMA_DEP = "DELETE FROM vinculo_norma_juridica WHERE cod_norma_referente in (%s
mapa = {} # mapa com tabela principal -> tabelas dependentes mapa = {} # mapa com tabela principal -> tabelas dependentes
mapa['tipo_autor'] = ['autor']
mapa['materia_legislativa'] = ['acomp_materia', 'autoria', 'despacho_inicial', mapa['materia_legislativa'] = ['acomp_materia', 'autoria', 'despacho_inicial',
'documento_acessorio', 'expediente_materia', 'documento_acessorio', 'expediente_materia',
'legislacao_citada', 'materia_assunto', 'legislacao_citada', 'materia_assunto',
@ -117,6 +118,8 @@ if __name__ == '__main__':
password=PASSWORD, password=PASSWORD,
db=DB) db=DB)
cursor = connection.cursor() cursor = connection.cursor()
# TIPO AUTOR
remove_tabelas(cursor, 'tipo_autor', 'tip_autor')
# MATERIA LEGISLATIVA # MATERIA LEGISLATIVA
remove_tabelas(cursor, 'materia_legislativa', 'cod_materia') remove_tabelas(cursor, 'materia_legislativa', 'cod_materia')
# NORMA JURIDICA # NORMA JURIDICA

Loading…
Cancel
Save