import mongoose, { Schema } from "mongoose"; const Video = new Schema({ name: {type: String, requeired: true}, videoHQ: {type: String}, videoLQ: {type: String}, playlist: {type: Schema.ObjectId, ref: 'Playlist'}, artist: {type: Schema.ObjectId, ref: 'Artist'}, date: {type: Date}, }); export default mongoose.model('Video', Video);