Festival.js
286 Bytes
const mongoose =require('mongoose');
const { Schema } =mongoose;
const festivalSchema = new Schema({
title: String,
addr: String,
tel: String,
mapx : Number,
mapy : Number
},
{
timestamps: true
}
);
module.exports = mongoose.model('Festival',festivalSchema);