Add video migration & runtime field on shows

This commit is contained in:
Zoe Roux
2024-11-08 22:30:49 +01:00
parent f53e8e3611
commit 4f74ffc5ce
5 changed files with 582 additions and 1 deletions
+1
View File
@@ -15,6 +15,7 @@ export const Movie = t.Object({
genres: t.Array(Genre),
rating: t.Nullable(t.Number({ minimum: 0, maximum: 100 })),
status: ShowStatus,
runtime: t.Nullable(t.Number({ minimum: 0 })),
airDate: t.Nullable(t.Date()),
originalLanguage: t.Nullable(t.String()),