Skip to content

Instantly share code, notes, and snippets.

@skolhustick
Last active August 10, 2021 07:58
Show Gist options
  • Save skolhustick/34561bc609003bb4c53942c723816b2d to your computer and use it in GitHub Desktop.
Save skolhustick/34561bc609003bb4c53942c723816b2d to your computer and use it in GitHub Desktop.
// models/User.js
import mongoose from 'mongoose'
const UserSchema = new mongoose.Schema({
name: String,
email: String
})
module.exports = mongoose.models.User || mongoose.model('User', UserSchema)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment