Skip to content

Instantly share code, notes, and snippets.

@daniele-zurico
Created June 8, 2018 15:28
Show Gist options
  • Select an option

  • Save daniele-zurico/a553d0fef54f501cbbd99737fe4850f6 to your computer and use it in GitHub Desktop.

Select an option

Save daniele-zurico/a553d0fef54f501cbbd99737fe4850f6 to your computer and use it in GitHub Desktop.
import mongoose from "mongoose";
const UserSchema = new mongoose.Schema({
email: String,
name: String,
picture: String,
given_name: String,
family_name: String,
locale: String
});
const User = mongoose.model("users", UserSchema);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment