Files
menui_backend/models/restaurant.js

50 lines
923 B
JavaScript

import mongoose from "mongoose";
const restaurantSchema = mongoose.Schema({
_id: mongoose.Types.ObjectId,
name: {
type: String,
maxlength: 128,
required: true,
},
city: {
type: String,
maxlength: 128,
required: true,
},
imgUrl: {
type: String,
required: true,
},
workingHours: {
type: String,
required: true,
},
description: {
type: String,
},
tags: {
cardPayments: Boolean,
petFriendly: Boolean,
glutenFree: Boolean,
vegan: Boolean,
vegetarian: Boolean,
alcohol: Boolean,
delivery: Boolean,
},
links: {
facebook: String,
twitter: String,
instagram: String,
www: String,
},
phone: Number,
hidden: Boolean,
subscriptionActive: Boolean,
subscriptionStarted: String,
subscriptionDue: String,
dishes: [mongoose.Types.ObjectId],
});
export default mongoose.model("Restaurant", restaurantSchema);