Files
menui_backend/models/restaurant.js
2020-07-08 15:37:09 +02:00

14 lines
313 B
JavaScript

const mongoose = require("mongoose");
const restaurantSchema = mongoose.Schema({
id: mongoose.Types.ObjectId,
name: String,
city: String,
imgUrl: String,
workingHours: String,
hidden: Boolean,
dishes: [mongoose.Types.ObjectId],
});
module.exports = mongoose.model("Restaurant", restaurantSchema);