From 5a6192f41fb9f0391b1a8ff21b4ed616c3e27a25 Mon Sep 17 00:00:00 2001 From: vikram-dagger <112123850+vikram-dagger@users.noreply.github.com> Date: Sat, 2 Aug 2025 00:37:37 +0530 Subject: [PATCH] Update models.py --- models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models.py b/models.py index bd73c60..ed7d53d 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) - author: Mapped[str] = mapped_column(String(255)) + authorxx: Mapped[str] = mapped_column(String(255)) # Pydantic models class BookIn(BaseModel):