const mongoose = require('mongoose'); const RepostSchema = new mongoose.Schema({ user: { type: mongoose.Schema.Types.ObjectId, ref: 'User', required: true }, swit: { type: mongoose.Schema.Types.ObjectId, ref: 'Swit', required: true }, }, { timestamps: true }); module.exports = mongoose.model('Repost', RepostSchema);