let mongoose = require('mongoose'); let dailyReportSchema = mongoose.Schema({ // Munka azonosítója workId: {type: mongoose.Schema.Types.ObjectId}, // Napi jelentés dailyReport:[{ date: {type: String}, foremanId: {type: String}, workTitle: {type: String}, employeeList:[{type: mongoose.Schema.Types.ObjectId}] }], }); let DailyReport = module.exports = mongoose.model('DailyReport', dailyReportSchema);