Skip to content

TableSchema

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");
Clone this wiki locally