Skip to content

Instantly share code, notes, and snippets.

View Umer-Khokhar's full-sized avatar
🫤
Trying to stay consistent

Umer Khokhar Umer-Khokhar

🫤
Trying to stay consistent
  • Pakistan, Lahore
View GitHub Profile
@Umer-Khokhar
Umer-Khokhar / 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