summaryrefslogtreecommitdiff
path: root/src/models/Log.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/Log.js')
-rwxr-xr-xsrc/models/Log.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/models/Log.js b/src/models/Log.js
deleted file mode 100755
index f165900..0000000
--- a/src/models/Log.js
+++ /dev/null
@@ -1,26 +0,0 @@
-import mongoose from "mongoose";
-
-const LogSchema = new mongoose.Schema({
- status: {
- type: String,
- trim: true,
- required: true,
- },
- process: {
- type: String,
- trim: true,
- required: true,
- },
- message: {
- type: String,
- trim: true,
- required: true,
- },
- timestamp: {
- type: Date,
- trim: true,
- required: true,
- },
-});
-
-export default mongoose.model("Log", LogSchema);