-
-
Notifications
You must be signed in to change notification settings - Fork 641
TableSchema
David Fahlander edited this page Apr 15, 2014
·
9 revisions
db.table(tableName).schema
name : String
primKey : IndexSpec
indexes : Array<IndexSpec>
instanceTemplate : Object
mappedClass : Function
Primary key and indexes for the object store (Table).
var db = new Dexie("MyDB");
db.version(1).stores({friends: "++id,name"});
alert ("Primary key: " + db.friends.schema.primKey.keyPath); // Will alert ("id");
Dexie.js - minimalistic and bullet proof indexedDB library