Newer
Older
const mongoose = require('mongoose');
const bookingSchema = new mongoose.Schema({
user_id: String,
location_id: String,
title: String,
street_address: String,
start_time: Date,
end_time: Date,
});
const Booking = mongoose.model('Booking',bookingSchema);
module.exports = Booking;