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 provision-and-configure-a-database.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Next, create a schema and model with the Mongoose library to interact with our d
1. Create a file named `db.js` with the following content in a folder called `middleware`:

```javascript
// ./middlewares/db.js
// ./middleware/db.js
var mongoose = require('mongoose');
const MovieSchema = new mongoose.Schema({
title: String,
Expand Down