import mongoose from 'mongoose'; const ChangelogSchema = new mongoose.Schema({ action: String, collection_name: String, conditions: mongoose.Schema.Types.Mixed, data: Object, user_id: mongoose.Schema.Types.ObjectId }, {minimize: false, strict: false}); export default mongoose.model>('changelog', ChangelogSchema);