-
-
Notifications
You must be signed in to change notification settings - Fork 641
inbound
David Fahlander edited this page Apr 7, 2016
·
5 revisions
A primary key is considered inbound if it's included in the stored objects.
db.version(1).stores({
friends: "id"
});
db.version(1).stores({
friends: "id,name"
});
db.version(1).stores({
friends: "++id,name"
});
db.version(1).stores({
friends: ""
});
db.version(1).stores({
friends: ",name"
});
db.version(1).stores({
friends: "++,name"
});
Dexie.js - minimalistic and bullet proof indexedDB library