modarb-be / src /common /models /exercise.model.ts
Hozifa Elgharbawy
finished user exercises and workouts
d491754
raw
history blame
380 Bytes
import mongoose from "mongoose";
const { Schema } = mongoose;
export interface IExercise {
name: string;
}
const exerciseSchema = new Schema({
name: { type: String, required: true, unique: true, dropDups: true },
});
export type ExerciseDocument = IExercise & mongoose.Document;
export const Exercise = mongoose.model<ExerciseDocument>("exercises", exerciseSchema);