12 lines
337 B
JavaScript
12 lines
337 B
JavaScript
|
const mongoose = require("mongoose");
|
||
|
const Schema = mongoose.Schema;
|
||
|
|
||
|
const BookSchema = new Schema({
|
||
|
title: {type: String, required: true},
|
||
|
authors: { type: [String] },
|
||
|
system: {type: String, required: true},
|
||
|
image: { type: String },
|
||
|
data: { type: Object },
|
||
|
});
|
||
|
|
||
|
module.exports = mongoose.model('Book', BookSchema);
|