Skip to content

Commit d2f343e

Browse files
author
Dagger Agent
committed
Fixes PR #116
1 parent d96da86 commit d2f343e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Book(Base):
1717

1818
id: Mapped[int] = mapped_column(primary_key=True, index=True)
1919
title: Mapped[str] = mapped_column(String(255), index=True)
20-
authoraa: Mapped[str] = mapped_column(String(255))
20+
author: Mapped[str] = mapped_column(String(255))
2121

2222
# Pydantic models
2323
class BookIn(BaseModel):

0 commit comments

Comments
 (0)