fix the entry model to not allow the title nor the date to be null

This commit is contained in:
Gustavo Henrique Santos Souza de Miranda 2025-07-20 17:34:57 -03:00
parent 4d87ae1b90
commit 5a28afc540
1 changed files with 2 additions and 2 deletions

View File

@ -11,9 +11,9 @@ from pilgrim.database import Base
class Entry(Base): class Entry(Base):
__tablename__ = "entries" __tablename__ = "entries"
id = Column(Integer, primary_key=True) id = Column(Integer, primary_key=True)
title = Column(String) title = Column(String,nullable=False)
text = Column(String) text = Column(String)
date = Column(DateTime) date = Column(DateTime,nullable=False)
photos = relationship( photos = relationship(
"Photo", "Photo",
secondary=photo_entry_association, secondary=photo_entry_association,