UNPKG

linagora-rse

Version:
12 lines (9 loc) 324 B
const mongoose = require('mongoose'); const CommunityArchiveSchema = { creator: {type: mongoose.Schema.Types.ObjectId, ref: 'User'}, timestamps: { creation: { type: Date, default: Date.now } }, source: mongoose.Schema.Types.Mixed }; module.exports = mongoose.model('CommunityArchive', CommunityArchiveSchema);