Skip to content

Instantly share code, notes, and snippets.

@thebopshoobop
Last active August 14, 2017 03:02
Show Gist options
  • Save thebopshoobop/e953cd955e91d8834f454348a1237b63 to your computer and use it in GitHub Desktop.
Save thebopshoobop/e953cd955e91d8834f454348a1237b63 to your computer and use it in GitHub Desktop.
//...
const ProductSchema = new mongoose.Schema({
name: String,
price: Number,
category: {
type: Schema.Types.ObjectId,
ref: "Category"
}
});
//...
const CategorySchema = new mongoose.Schema({ name: String });
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment