Created
June 15, 2020 13:36
-
-
Save teyyihan/3568dd8301e237e122d9766e1dcf2afb to your computer and use it in GitHub Desktop.
This file contains 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
const mongoose = require('mongoose') | |
const UserSchema = mongoose.Schema({ | |
_id: String, | |
name: String, | |
age: Number | |
}) | |
module.exports = mongoose.model('Users',UserSchema) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment