Skip to content

Instantly share code, notes, and snippets.

@otoloye
Created July 7, 2019 05:20
Show Gist options
  • Save otoloye/18bfeb5b10f782006f156f7b8ae9442f to your computer and use it in GitHub Desktop.
Save otoloye/18bfeb5b10f782006f156f7b8ae9442f to your computer and use it in GitHub Desktop.
import mongoose, { Schema } from 'mongoose';
const userSchema = new Schema({
email: String,
password: String,
firstname: String,
lastname: String,
avatar: String
});
const userModel = mongoose.model('user', userSchema);
export default userModel;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment