like this,when I new a db and appointed the version of the db is 1,but I get the db with version number which equals 10. Also, when I appointed the version of the db is 2, I get the db with version number which equals 20.
var db = new Dexie("DEXIE");
db.version(1).stores({
students: 'id,name,age',
teachers: 'id,name,phone'
});
This is normal, see https://github.com/dfahlander/Dexie.js/issues/59
@dfahlander I guess this issue can be closed
Thanks @fgilio
Most helpful comment
This is normal, see https://github.com/dfahlander/Dexie.js/issues/59