aboutsummaryrefslogtreecommitdiff
path: root/schema/logging-schema.js
diff options
context:
space:
mode:
Diffstat (limited to 'schema/logging-schema.js')
-rw-r--r--schema/logging-schema.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/schema/logging-schema.js b/schema/logging-schema.js
deleted file mode 100644
index 339c7f7..0000000
--- a/schema/logging-schema.js
+++ /dev/null
@@ -1,13 +0,0 @@
-const mongoose = require('mongoose')
-
-const reqString = {
- type: String,
- required: true
-}
-
-const loggingSchema = mongoose.Schema({
- _id: reqString,
- logChannel: reqString
-})
-
-module.exports = mongoose.model('logging', loggingSchema) \ No newline at end of file