use db contexts for better stability
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-04-24 18:37:58 +02:00
parent e9d2582606
commit 0dfb5f3134
9 changed files with 54 additions and 140 deletions

View File

@@ -25,6 +25,7 @@ class JournalEntry(BaseModel):
author = TextField(null=True)
text = TextField(null=True)
media_path = TextField(null=True)
last_shown = DateField(null=True)
@property