Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ var database = {
}, {
version: "1.1",
migrate: function(transaction, next) {
var store = transaction.db.objectStore("movies")
var store = transaction.objectStore("movies")
store.createIndex("titleIndex", "title", { unique: true}); // Adds an index on the movies titles
store.createIndex("formatIndex", "format", { unique: false}); // Adds an index on the movies formats
store.createIndex("genreIndex", "genre", { unique: false}); // Adds an index on the movies genres
Expand Down