weacast/weacast-core

View on GitHub
src/models/forecasts.model.mongodb.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module.exports = function (app, options) {
  options.Model = app.db.collection('forecasts', options.dbName)
  options.Model.createIndex({ name: 1 }, { unique: true })
}