2021-05-14 19:51:14 +00:00
|
|
|
import mongoose from 'mongoose';
|
|
|
|
|
const { Schema } = mongoose;
|
|
|
|
|
|
|
|
|
|
const ApplicationLogsSchema = new Schema({
|
|
|
|
|
deployId: { type: String, required: true },
|
|
|
|
|
event: { type: String, required: true }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
ApplicationLogsSchema.set('timestamps', true);
|
|
|
|
|
|
2021-05-16 19:54:44 +00:00
|
|
|
export default mongoose.models['logs-application'] || mongoose.model('logs-application', ApplicationLogsSchema);
|