Files
amble_api/models/rpgwalkcategory.js
2025-07-15 15:54:43 +05:30

11 lines
341 B
JavaScript

const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const rpgwalkcategorySchema = new Schema({
Category_Name :String,
Category_Value :String,
DateofRegistration:Date
});
const newRpgwalkcategoryEntry = mongoose.model('rpgwalkcategory', rpgwalkcategorySchema);
module.exports = newRpgwalkcategoryEntry;