aboutsummaryrefslogtreecommitdiff
path: root/lib/log.schema.ts
blob: 3c55de71ab93586e5c24b06ae28d79e42404047c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Schema, Types, Document } from 'mongoose';

export interface LogDocument extends Document {
  eventId: string;
  message: string;
}

const schema = new Schema({
  eventId: Types.ObjectId,
  message: String
}, { timestamps: true });


export default schema;