Skip to content

Commit

Permalink
Set proper field types
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Jul 8, 2024
1 parent 438f893 commit fe2b2a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plextraktsync/db/models/SyncRecord.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class SyncRecord(SQLModel, table=True):
updated_at: Optional[datetime] = Field(
sa_column=Column(DateTime(), onupdate=func.now())
)
plex_timestamp_watched: str
seen_on_plex_sync: str
trakt_timestamp_watched: str
seen_on_trakt_sync: str
plex_timestamp_watched: Optional[datetime]
seen_on_plex_sync: bool
trakt_timestamp_watched: Optional[datetime]
seen_on_trakt_sync: bool

0 comments on commit fe2b2a9

Please sign in to comment.