Created
September 13, 2016 10:49
-
-
Save TalAter/45e0b87ee0cf8b65f943c4320b092b0e to your computer and use it in GitHub Desktop.
IndexedDB upgrade code to add index to an existing object store
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
request.onupgradeneeded = function(event) { | |
var db = event.target.result; | |
var upgradeTransaction = event.target.transaction; | |
var objectStore; | |
if (!db.objectStoreNames.contains("my-store")) { | |
objectStore = db.createObjectStore("my-store"); | |
} else { | |
objectStore = upgradeTransaction.objectStore('my-store'); | |
} | |
if (!objectStore.indexNames.contains("my-index")) { | |
objectStore.createIndex("my-index", "status", { unique: false }); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment