summaryrefslogtreecommitdiff
path: root/models/Log.js
diff options
context:
space:
mode:
Diffstat (limited to 'models/Log.js')
-rwxr-xr-xmodels/Log.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/models/Log.js b/models/Log.js
deleted file mode 100755
index 95a3ab3..0000000
--- a/models/Log.js
+++ /dev/null
@@ -1,26 +0,0 @@
-const mongoose = require('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
- }
-});
-
-module.exports = mongoose.model('Log', LogSchema);