From 8afcccf72f405e505e7fae03b95eb3e140d06189 Mon Sep 17 00:00:00 2001 From: looccasgtr Date: Wed, 23 Apr 2025 16:16:17 -0400 Subject: [PATCH] =?UTF-8?q?corre=C3=A7=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/models/ocr_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/ocr_results.py b/app/models/ocr_results.py index e0288f0..ed9ff74 100644 --- a/app/models/ocr_results.py +++ b/app/models/ocr_results.py @@ -7,7 +7,7 @@ from datetime import datetime, timezone Base = declarative_base() class OCRResult(Base): - __tablename__ = "ocr_result" # Corrigido aqui + __tablename__ = "ocr_result" # Corrigido id = Column(UUID(as_uuid=True), primary_key=True, default=uuid.uuid4) documento_id = Column(UUID(as_uuid=True), ForeignKey("documento.id"), unique=True, nullable=False)