Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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