Migrating existing DB to Dexie
How to migrate
What you will see
Dumping Databases
=================
var db = new Dexie('tasks');
db.version(0.2).stores({
tasks: 'id,description,date,done',
notes: '++id,taskId,note'
});
Finished dumping databases
==========================