Browse Source

Corrige problema na migração de tipoturno de tramitação

pull/3163/head
Cesar Carvalho 5 years ago
parent
commit
7dcc451ae4
  1. 8
      sapl/materia/migrations/0063_auto_20190905_1135.py

8
sapl/materia/migrations/0063_auto_20190905_1135.py

@ -30,8 +30,12 @@ def migra_tipos_turnos_tramitacao(apps, schema_editor):
for t in Tramitacao.objects.all():
turno_antigo = t.turno
if turno_antigo:
t.tipo_turno = TipoTurnoTramitacao.objects.get(nome=TURNO_CHOICES[turno_antigo])
t.save()
try:
t.tipo_turno = TipoTurnoTramitacao.objects.get(nome=TURNO_CHOICES[turno_antigo])
except Exception:
continue
else:
t.save()
class Migration(migrations.Migration):

Loading…
Cancel
Save