linguabot's picture
Upload models/Slide.js with huggingface_hub
02f402d verified
raw
history blame contribute delete
315 Bytes
const mongoose = require('mongoose');
const SlideSchema = new mongoose.Schema({
title: { type: String, required: true },
date: { type: String },
file: { type: String, required: true },
order: { type: Number, default: 0 },
}, { timestamps: true });
module.exports = mongoose.model('Slide', SlideSchema);