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.
44 lines
648 B
44 lines
648 B
'use strict'
|
|
|
|
/**
|
|
* Upload File schema
|
|
*
|
|
* @type {<Mongoose.Schema>}
|
|
*/
|
|
var uplFileSchema = Mongoose.Schema({
|
|
|
|
_id: String,
|
|
|
|
category: {
|
|
type: String,
|
|
required: true,
|
|
default: 'binary'
|
|
},
|
|
mime: {
|
|
type: String,
|
|
required: true,
|
|
default: 'application/octet-stream'
|
|
},
|
|
extra: {
|
|
type: Object
|
|
},
|
|
folder: {
|
|
type: String,
|
|
ref: 'UplFolder'
|
|
},
|
|
filename: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
basename: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
filesize: {
|
|
type: Number,
|
|
required: true
|
|
}
|
|
|
|
}, { timestamps: {} })
|
|
|
|
module.exports = Mongoose.model('UplFile', uplFileSchema)
|