juampi92 / adonis-mongoose-model

Mongoose models for Adonis framework.
MIT License
61 stars 17 forks source link

How to change collection name in model? #37

Closed smsugumar5 closed 5 years ago

smsugumar5 commented 5 years ago

I have a custom_lists collection in mongodb and CustomList model. Model not matching with collection.

smsugumar5 commented 5 years ago

Solved.

static get schemaOptions() { return { collection: "custom_lists", }; }