From 53179d757b9d6bc2f1afd87d07bb5621bc116736 Mon Sep 17 00:00:00 2001 From: Pedro Barbosa <78980796+pedrobarbosaocb@users.noreply.github.com> Date: Fri, 27 Oct 2023 13:06:30 -0300 Subject: [PATCH] refactor: renomeando nome da model Lancamento --- project/app/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/app/models.py b/project/app/models.py index 74c80757..13aceae7 100644 --- a/project/app/models.py +++ b/project/app/models.py @@ -46,7 +46,7 @@ class Mapeamento(models.Model): id_instituicao_executora = models.CharField(max_length=200) id_tipo = models.CharField(max_length=200) -class MapeamentoConveniar(models.Model): +class Lancamento(models.Model): id_mapeamento = models.IntegerField(primary_key=True) id_favorecido = models.CharField(max_length=200) nome_favorecido = models.CharField(max_length=200)