17 lines
390 B
JavaScript
17 lines
390 B
JavaScript
const mongoose = require('mongoose')
|
|
const mongoosePaginate = require('mongoose-paginate-v2');
|
|
|
|
const subscribersSchema = mongoose.Schema({
|
|
full_name: String,
|
|
birth_date: String,
|
|
job: String,
|
|
marrage_date: String,
|
|
email: String,
|
|
mobile: String,
|
|
address: String
|
|
})
|
|
|
|
subscribersSchema.plugin(mongoosePaginate);
|
|
|
|
module.exports = mongoose.model('Subscribers', subscribersSchema)
|