fix bugs in the backend

This commit is contained in:
maxDorninger
2025-07-01 17:54:33 +02:00
parent 8d512f665e
commit a43748d7b5
2 changed files with 2 additions and 4 deletions

View File

@@ -12,4 +12,4 @@ class Notification(Base):
id: Mapped[UUID] = mapped_column(primary_key=True)
message: Mapped[str]
read: Mapped[bool]
timestamp = mapped_column(type=DateTime)
timestamp = mapped_column(DateTime, nullable=False)