GIF89a php
Current File : /home/viralhoga/app_viralhoga/src/models/otp.model.js
import mongoose from "mongoose";

const otpSchema = new mongoose.Schema({
    mobile: {
        type: String,
        required: true
    },
    otp: {
        type: String,
    }
})

const OTPModel = mongoose.model('OTP', otpSchema);
export default OTPModel;