Skip to content

Commit

Permalink
backend test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurikam2003 committed Jul 29, 2024
1 parent 3e63146 commit c3a58b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions server/src/models/UserModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,23 +110,23 @@ const UserSchema = new mongoose.Schema(
},
phoneNumber: {
type: String,
required: true,
required: false,
},
emergencyContactName: {
type: String,
required: true,
required: false,
},
emergencyContactRelationship: {
type: String,
required: true,
required: false,
},
emergencyContactCountryCode: {
type: String,
required: false,
},
emergencyContactNumber: {
type: String,
required: true,
required: false,
},
medicalInfo: {
type: String,
Expand Down

0 comments on commit c3a58b9

Please sign in to comment.