mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
357 B
22 lines
357 B
'use strict'
|
|
|
|
const Mongoose = require('mongoose')
|
|
|
|
/**
|
|
* Settings schema
|
|
*
|
|
* @type {<Mongoose.Schema>}
|
|
*/
|
|
var settingSchema = Mongoose.Schema({
|
|
key: {
|
|
type: String,
|
|
required: true,
|
|
index: true
|
|
},
|
|
value: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
}, { timestamps: {} })
|
|
|
|
module.exports = Mongoose.model('Setting', settingSchema)
|