From d2f343e13de190948ac868689b2e9747a6976de0 Mon Sep 17 00:00:00 2001 From: Dagger Agent Date: Fri, 22 Aug 2025 06:49:06 +0000 Subject: [PATCH] Fixes PR #116 --- models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models.py b/models.py index 38c8356..bd73c60 100644 --- a/models.py +++ b/models.py @@ -17,7 +17,7 @@ class Book(Base): id: Mapped[int] = mapped_column(primary_key=True, index=True) title: Mapped[str] = mapped_column(String(255), index=True) - authoraa: Mapped[str] = mapped_column(String(255)) + author: Mapped[str] = mapped_column(String(255)) # Pydantic models class BookIn(BaseModel):