Skip to content

Instantly share code, notes, and snippets.

@gisderdube
Created April 4, 2019 09:34
Show Gist options
  • Save gisderdube/e11a6bbfec9db1d57e27e0674ad5b215 to your computer and use it in GitHub Desktop.
Save gisderdube/e11a6bbfec9db1d57e27e0674ad5b215 to your computer and use it in GitHub Desktop.
const StudentSchema = new Schema({
teacher: {
type: Schema.Types.ObjectId,
ref: 'Teacher',
required: true,
},
name: String,
...
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment