mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
65976cb363
Upgrade Mongoose and the Mongo driver in web GitOrigin-RevId: 2cad1aabe57eae424a9e4c68b2e0062f0e78ffaf
24 lines
562 B
JavaScript
24 lines
562 B
JavaScript
const mongoose = require('../infrastructure/Mongoose')
|
|
|
|
const { Schema } = mongoose
|
|
|
|
const ProjectHistoryFailureSchema = new Schema(
|
|
{
|
|
project_id: Schema.Types.ObjectId,
|
|
ts: Date,
|
|
queueSize: Number,
|
|
error: String,
|
|
stack: String,
|
|
attempts: Number,
|
|
history: Schema.Types.Mixed,
|
|
resyncStartedAt: Date,
|
|
resyncAttempts: Number,
|
|
requestCount: Number,
|
|
},
|
|
{ collection: 'projectHistoryFailures', minimize: false }
|
|
)
|
|
|
|
exports.ProjectHistoryFailure = mongoose.model(
|
|
'ProjectHistoryFailure',
|
|
ProjectHistoryFailureSchema
|
|
)
|