Add examples for series

This commit is contained in:
Zoe Roux
2024-11-09 17:47:57 +01:00
parent 4a9a768488
commit 2a9ea5ecbf
9 changed files with 365 additions and 82 deletions
+1
View File
@@ -79,6 +79,7 @@ export const entriesTranslation = schema.table(
language: language().notNull(),
name: text(),
description: text(),
tagline: text(),
},
(t) => [primaryKey({ columns: [t.pk, t.language] })],
);
-1
View File
@@ -57,7 +57,6 @@ export const seasonTranslation = schema.table(
description: text(),
poster: image(),
thumbnail: image(),
logo: image(),
banner: image(),
},
(t) => [primaryKey({ columns: [t.pk, t.language] })],