Welcome to the MongoDB Community Forums @Jose_Valenzuela !
What version of Mongoose are you using? The useCreateIndex
option has been deprecated for a while and removed as of the Mongoose 6 release per No More Deprecation Warning Options:
useNewUrlParser
,useUnifiedTopology
,useFindAndModify
, anduseCreateIndex
are no longer supported options. Mongoose 6 always behaves as ifuseNewUrlParser
,useUnifiedTopology
, anduseCreateIndex
aretrue
, anduseFindAndModify
isfalse
.
The solution is to remove any unsupported options from your code.
Regards,
Stennie