aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Database
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Database')
-rw-r--r--src/lib/Database/chapters.ts22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/lib/Database/chapters.ts b/src/lib/Database/chapters.ts
new file mode 100644
index 00000000..0f77f0a0
--- /dev/null
+++ b/src/lib/Database/chapters.ts
@@ -0,0 +1,22 @@
+import Dexie, { type Table } from 'dexie';
+
+export interface Chapter {
+ id: number;
+ chapters: number | null;
+ volumes: number | null;
+}
+
+export class ChapterDatabase extends Dexie {
+ chapters: Table<Chapter>;
+
+ constructor() {
+ super('chapters');
+ this.version(1).stores({
+ chapters: 'id, chapters, volumes'
+ });
+
+ this.chapters = this.table('chapters');
+ }
+}
+
+export const database = new ChapterDatabase();