From 914623a2fc0804fd74b72cbddbe0d44d07a9e4ce Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sun, 5 Nov 2023 17:53:07 -0800 Subject: feat(manga): display out-of-date volumes --- src/lib/Media/chapters.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/lib/Media/chapters.ts') diff --git a/src/lib/Media/chapters.ts b/src/lib/Media/chapters.ts index d580e6fa..a8a4d716 100644 --- a/src/lib/Media/chapters.ts +++ b/src/lib/Media/chapters.ts @@ -3,6 +3,7 @@ import Dexie, { type Table } from 'dexie'; export interface Chapter { id: number; chapters: number | null; + volumes: number | null; } export class ChapterDatabase extends Dexie { @@ -11,7 +12,7 @@ export class ChapterDatabase extends Dexie { constructor() { super('chapterDatabase'); this.version(1).stores({ - chapters: 'id, chapters' + chapters: 'id, chapters, volumes' }); this.chapters = this.table('chapters'); -- cgit v1.2.3