fix entity service tests

This commit is contained in:
phernandez
2024-12-22 12:00:02 -06:00
parent ecb46ddceb
commit c2d16acb59
6 changed files with 119 additions and 80 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ class Document(Base):
is the real source of truth.
"""
__tablename__ = "documents"
__tablename__ = "document"
id: Mapped[int] = mapped_column(primary_key=True)
path: Mapped[str] = mapped_column(String, unique=True, nullable=False)