You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
David Fahlander edited this page Apr 15, 2014
·
9 revisions
Syntax
db.table(tableName).schema
Properties
name : String
primKey : IndexSpec
indexes : Array<IndexSpec>
instanceTemplate : Object
mappedClass : Function
Description
Primary key and indexes for the object store (Table).
Sample
var db = new Dexie("MyDB");
db.version(1).stores({friends: "++id,name"});
alert ("Primary key: " + db.friends.schema.primKey.keyPath); // Will alert ("id");