From 8569a5de3c4dd9113a094695a4a53f0fb492a9fe Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Wed, 2 Apr 2025 13:38:18 -0400 Subject: [PATCH] One more field... --- app/models/journal_models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/models/journal_models.py b/app/models/journal_models.py index d610faf..07e6e3e 100644 --- a/app/models/journal_models.py +++ b/app/models/journal_models.py @@ -114,6 +114,7 @@ class Journal_Base(BaseModel): updated_on: Optional[datetime.datetime] = None # Including other related objects + journal_entry_count: Optional[int] # Number of journal entries in the journal journal_entry_list: Optional[list[Journal_Entry_Base]] # Journal_Entry_Base() # This is only for convenience. Probably going to keep unless it causes a problem. file_count: Optional[int] # Only files directly under the journal