lasthourcloud/api/models/Logs/Application.js
2021-03-24 22:11:14 +01:00

11 lines
302 B
JavaScript

const mongoose = require('mongoose')
const logSchema = mongoose.Schema(
{
deployId: { type: String, required: true },
event: { type: String, required: true }
},
{ timestamps: { createdAt: 'createdAt', updatedAt: false } }
)
module.exports = mongoose.model('logs-application', logSchema)