irc-radio-bot/models/Preferences.js

12 lines
223 B
JavaScript
Raw Permalink Normal View History

2020-01-02 13:58:41 +01:00
module.exports = mongoose => {
const schema = new mongoose.Schema({
user: String,
notification: Boolean,
radio: String
})
const Preferences = mongoose.model('Preferences', schema)
return Preferences
}