I defined one collection without any problem as follows:
db = new Dexie('db');
db.version(1).stores(
{test : '++id,title'}
);
but when i add a new table to 'db' database by two ways below, both is failed and change does not happen.
//without version change
db = new Dexie('db');
db.version(1).stores(
{test2 : '++id,title'}
);
or
//with version change
db = new Dexie('db');
db.version(2).stores(
{test2 : '++id,title'}
);