aboutsummaryrefslogtreecommitdiff
path: root/schema/quote-schema.js
diff options
context:
space:
mode:
Diffstat (limited to 'schema/quote-schema.js')
-rw-r--r--schema/quote-schema.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/schema/quote-schema.js b/schema/quote-schema.js
deleted file mode 100644
index d1c7db8..0000000
--- a/schema/quote-schema.js
+++ /dev/null
@@ -1,17 +0,0 @@
-const mongoose = require('mongoose');
-
-const reqString = {
- type: String,
- required: true
-}
-
-const quoteSchema = mongoose.Schema({
- quoteID: reqString,
- author: reqString,
- authorImage: reqString,
- quote: reqString,
- year: reqString
-
-})
-
-module.exports = mongoose.model('quote', quoteSchema) \ No newline at end of file