Introduction
Migration
Appearance
import { Unique } from "@tsed/mongoose";
See /packages/orm/mongoose/src/types/decorators/unique.ts.
function Unique(unique?: boolean | any): Function;
Tell Mongoose to ensure a unique index is created for this path.
@Model() export class EventModel { @Unique() index: string; }