Created
January 31, 2021 14:01
-
-
Save lmas3009/bc9fcce63f4405f9957c83c3cdced135 to your computer and use it in GitHub Desktop.
A Simple MERN Full Stack Application
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
import mongoose from 'mongoose'; | |
const UserDataSchema = mongoose.Schema({ | |
Name: String, | |
FName: String, | |
Address: String, | |
PhonNo: String, | |
Email: String | |
}) | |
export default mongoose.model("UserDetails",UserDataSchema) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment