Skip to content

Instantly share code, notes, and snippets.

@barmgeat
Created October 31, 2019 06:06
Show Gist options
  • Save barmgeat/fb57293b68759d99755ef726661bdabe to your computer and use it in GitHub Desktop.
Save barmgeat/fb57293b68759d99755ef726661bdabe to your computer and use it in GitHub Desktop.
const postSchema = new mongosse.Schema({
title: {type: String, required: true},
des: {type: String, required: true},
body: {type: String, required: true},
tags: [{type: mongosse.Schema.Types.ObjectId, required: true, ref:'Tag'}]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment