fix: add nugs_link and bandcamp_link to ShowRead schema
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run

This commit is contained in:
fullsizemalt 2025-12-24 13:56:10 -08:00
parent 115c411ebc
commit 1328cc458f

View file

@ -159,7 +159,10 @@ class ShowRead(ShowBase):
tour: Optional["TourRead"] = None
tags: List["TagRead"] = []
performances: List["PerformanceRead"] = []
notes: Optional[str] = None
youtube_link: Optional[str] = None
nugs_link: Optional[str] = None
bandcamp_link: Optional[str] = None
class ShowUpdate(SQLModel):
date: Optional[datetime] = None