Nom de la collection Mongoose

/*
	Mongoose by default produces a collection name by passing the model name to the
	utils.toCollectionName method. This method pluralizes the name. Set 
	this option if you need a different name for your collection.
*/

const dataSchema = new Schema({..}, { collection: 'data' });
Scary Shark