mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
bdc5360bc0
Use the default Mongoose connection pool for all models GitOrigin-RevId: d227b7eb36f130085c9eb1480dc07bd50ba57768
24 lines
448 B
JavaScript
24 lines
448 B
JavaScript
const mongoose = require('../infrastructure/Mongoose')
|
|
|
|
const { Schema } = mongoose
|
|
|
|
const FileSchema = new Schema({
|
|
name: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
created: {
|
|
type: Date,
|
|
default() {
|
|
return new Date()
|
|
}
|
|
},
|
|
rev: { type: Number, default: 0 },
|
|
linkedFileData: { type: Schema.Types.Mixed },
|
|
hash: {
|
|
type: String
|
|
}
|
|
})
|
|
|
|
exports.File = mongoose.model('File', FileSchema)
|
|
exports.FileSchema = FileSchema
|