Skip to content

Instantly share code, notes, and snippets.

View umer-aswad's full-sized avatar

Umer Aswad umer-aswad

  • Pakistan, Lahore
View GitHub Profile
@umer-aswad
umer-aswad / Defining a Mongoose Schema for Workout Model.md
Created August 4, 2024 13:27
Defining a Mongoose schema for a workout model with title, reps, and load fields.

Defining a Mongoose Schema for Workout Model

Preview:
const Schema = mongoose.Schema;


const workoutSchema = new Schema({
    title : {
        type: String,
 required: true