| Current Path : /home/deltalab/PMS/buy-button-generator/models/mongoose/ |
| Current File : //home/deltalab/PMS/buy-button-generator/models/mongoose/channel.js |
const mongoose = require('mongoose');
// SCHEMA ============================================
/**
* The SubscriptionPlanSchema model represents a set of services subscribable by the partner.
*/
const ChannelSchema = new mongoose.Schema(
{
name: { type: String, required: true, unique: true },
},
{
timestamps: true,
versionKey: false
}
);
// MODELS ============================================
const channelModel = mongoose.model('Channel', ChannelSchema);
// EXPORTS ===========================================
module.exports = { channelModel };