How to create unique fields with ottomanjs like above
import { Schema } from "mongoose";
const userSchema = new Schema({
username: { type: String, unique: true },
email: { type: String, unique: true },
});
How to create unique fields with ottomanjs like above
import { Schema } from "mongoose";
const userSchema = new Schema({
username: { type: String, unique: true },
email: { type: String, unique: true },
});