Update model.js
This commit is contained in:
@@ -16,6 +16,6 @@ const instance = new mongoose.Schema(
|
||||
|
||||
// document = model name ---> https://mongoosejs.com/docs/guide.html
|
||||
// note: use a singular name, mongoose automatically creates a collection like so -> model: 'Person' === collection: 'people'
|
||||
const document = 'Example';
|
||||
const modelName = 'Example';
|
||||
|
||||
export default mongoose.model(document, instance);
|
||||
export default mongoose.model(modelName, instance);
|
||||
|
||||
Reference in New Issue
Block a user