Skip to content

Instantly share code, notes, and snippets.

@ftmoose
Created January 5, 2020 16:31
Show Gist options
  • Save ftmoose/1e1bd27f9d4b1fa94b016a33263cb728 to your computer and use it in GitHub Desktop.
Save ftmoose/1e1bd27f9d4b1fa94b016a33263cb728 to your computer and use it in GitHub Desktop.
const userSchema = new Schema({
username: String,
picture: { type: String, default: "https://domain.com/some-pic.png" },
googleId: String,
facebookId: String
});
userSchema.index({ username: 1 });
userSchema.index({ googleId: 1 });
userSchema.index({ facebookId: 1 });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment