irc-radio-bot/models/Notifications.js

15 lines
273 B
JavaScript
Raw Normal View History

2019-12-24 11:30:19 +01:00
module.exports = mongoose => {
const schema = new mongoose.Schema({
user: String,
2019-12-24 16:30:45 +01:00
type: {
2019-12-24 11:30:19 +01:00
type: String,
enum: ['artist', 'title']
},
value: String
})
const Notifications = mongoose.model('Notifications', schema)
return Notifications
}