mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-30 20:31:34 +02:00
Upgrade Mongoose and the Mongo driver in web GitOrigin-RevId: 2cad1aabe57eae424a9e4c68b2e0062f0e78ffaf
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
const mongoose = require('../infrastructure/Mongoose')
|
|
|
|
const { Schema } = mongoose
|
|
|
|
const SystemMessageSchema = new Schema(
|
|
{
|
|
content: { type: String, default: '' },
|
|
},
|
|
{ minimize: false }
|
|
)
|
|
|
|
exports.SystemMessage = mongoose.model('SystemMessage', SystemMessageSchema)
|