Skip to content

Instantly share code, notes, and snippets.

@tuanlc
Created July 30, 2021 04:15
Show Gist options
  • Select an option

  • Save tuanlc/d60a04363fa3095ecf1cf3a71b2ea155 to your computer and use it in GitHub Desktop.

Select an option

Save tuanlc/d60a04363fa3095ecf1cf3a71b2ea155 to your computer and use it in GitHub Desktop.
const userSchema = new Schema(
  {
    email: {
      type: String,
      index: true,
      unique: true,
    },
    name: String,
  }
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment