This commit is contained in:
Ordis 2025-01-31 10:53:13 +01:00
parent 877c693d01
commit cdc9493b40

View File

@ -85,16 +85,19 @@ const messageSchema = new Schema<IMessageDatabase>(
startDate: Date,
endDate: Date,
r: Boolean,
att: [String],
countedAtt: [typeCountSchema],
att: { type: [String], default: undefined },
countedAtt: { type: [typeCountSchema], default: undefined },
transmission: String,
arg: [
arg: {
type: [
{
Key: String,
Tag: String,
_id: false
}
]
],
default: undefined
}
},
{ timestamps: { createdAt: "date", updatedAt: false }, id: false }
);