feat: add dexie

This commit is contained in:
Robin Dittmar
2026-07-27 10:00:23 +02:00
parent 7339317ed2
commit b40dee3429
2 changed files with 13 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import Dexie from 'dexie';
export const db = new Dexie('dttmrdb')
db.version(1).stores({
lists: '++id, uuid, title',
listItems: '++id, uuid, title, isChecked',
syncQueue: '++id, action, endpoint, createdAt',
})