Skip to content

Commit

Permalink
reply should be specified
Browse files Browse the repository at this point in the history
  • Loading branch information
azliu0 committed Apr 15, 2024
1 parent b5252e0 commit 0976212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/models/email.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Email(db.Model):
back_populates="email", init=False
)

reply: Mapped[bool] = mapped_column(nullable=False, default=False)
reply: Mapped[bool] = mapped_column(nullable=False)

thread_id: Mapped[int] = mapped_column(ForeignKey("Threads.id"), nullable=False)
thread: Mapped[Thread] = relationship(back_populates="emails")
Expand Down

0 comments on commit 0976212

Please sign in to comment.