Skip to content

Instantly share code, notes, and snippets.

@Akifcan
Created July 7, 2021 18:40
Show Gist options
  • Save Akifcan/c9d6e5854cf1b9dc462d71ba14da8ef3 to your computer and use it in GitHub Desktop.
Save Akifcan/c9d6e5854cf1b9dc462d71ba14da8ef3 to your computer and use it in GitHub Desktop.
create indeddb objectstore
requestfile.onupgradeneeded = function (event) {
var db = event.target.result;
var objectStore = db.createObjectStore("photos", { keyPath: "id", autoIncrement: true });
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment