import DB from "../database"; import { ModelDataBase } from "@hibas123/safe_mongo"; export interface IMail extends ModelDataBase { mail: string; verified: boolean; primary: boolean; } const Mail = DB.addModel({ name: "mail", versions: [ { migration: () => {}, schema: { mail: { type: String }, verified: { type: Boolean, default: false }, primary: { type: Boolean }, }, }, ], }); export default Mail;