Your IP : 216.73.216.43


Current Path : /proc/thread-self/root/home/deltalab/PMS/buy-button-generator/models/mongoose/
Upload File :
Current File : //proc/thread-self/root/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 };