feat: Enhance timestamp management in BaseModel and PlaylistRepository; add automatic updates and improve code readability
All checks were successful
Backend CI / lint (push) Successful in 9m21s
Backend CI / test (push) Successful in 4m0s

This commit is contained in:
JSC
2025-08-16 00:19:53 +02:00
parent b691649f7e
commit 4cec3b9d18
4 changed files with 38 additions and 3 deletions

View File

@@ -35,3 +35,5 @@ class PlaylistSound(BaseModel, table=True):
# relationships
playlist: "Playlist" = Relationship(back_populates="playlist_sounds")
sound: "Sound" = Relationship(back_populates="playlist_sounds")