We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d96da86 commit d2f343eCopy full SHA for d2f343e
1 file changed
models.py
@@ -17,7 +17,7 @@ class Book(Base):
17
18
id: Mapped[int] = mapped_column(primary_key=True, index=True)
19
title: Mapped[str] = mapped_column(String(255), index=True)
20
- authoraa: Mapped[str] = mapped_column(String(255))
+ author: Mapped[str] = mapped_column(String(255))
21
22
# Pydantic models
23
class BookIn(BaseModel):
0 commit comments