feat: add ci cd files dont edit those files

This commit is contained in:
mahyargdz
2024-10-21 10:22:26 +03:30
commit fb5b440d42
321 changed files with 188273 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
const mongoose = require('mongoose');
const mongoosePaginate = require('mongoose-paginate-v2');
const MeetingSchema = mongoose.Schema({
name : String,
subject : String,
description: String,
email : String,
phoneNumber : String,
nationalCode : String,
read : {type : Boolean , default : false},
_updatedBy: {
type: mongoose.Schema.Types.ObjectId,
ref: 'User'
}
});
MeetingSchema.plugin(mongoosePaginate);
module.exports = mongoose.model('Meeting', MeetingSchema);