Skip to content

Commit ab55a54

Browse files
authored
Merge pull request #12 from AiriAPI/staging
Staging
2 parents 35a994d + 8bdb3d4 commit ab55a54

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "airi",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Random API Serving Anime stuff",
55
"author": "Kyoyo",
66
"private": true,

src/models/schemas/Quotes.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const { Schema, model } = require('mongoose')
33
const QuoteSchema = new Schema({
44
_id: { type: Number, required: true },
55
quote: { type: String, required: true },
6-
anime: { type: String, },
7-
name: { type: String, },
6+
anime: { type: String },
7+
said: { type: String, required: true },
88
})
99

10-
module.exports = model('Quote', QuoteSchema)
10+
module.exports = model('Quote', QuoteSchema)

0 commit comments

Comments
 (0)