Skip to content

Instantly share code, notes, and snippets.

@TheArhaam
Created November 19, 2020 17:47
Show Gist options
  • Save TheArhaam/d24fe281ddc106114a3518f5a3e345f3 to your computer and use it in GitHub Desktop.
Save TheArhaam/d24fe281ddc106114a3518f5a3e345f3 to your computer and use it in GitHub Desktop.
randomlist item.model.js
const mongoose = require("mongoose");
const Schema = mongoose.Schema;
const itemSchema = new Schema(
{
name: {
type: String,
required: true,
},
}
);
const Item = mongoose.model("item", itemSchema);
module.exports = Item;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment