Files
amble_api/models/rpgwalkcategory.js

11 lines
341 B
JavaScript
Raw Permalink Normal View History

2025-07-15 15:54:43 +05:30
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;