Last active
          August 10, 2021 07:58 
        
      - 
      
- 
        Save skolhustick/34561bc609003bb4c53942c723816b2d to your computer and use it in GitHub Desktop. 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // 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