This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
backend/models/favorites.js
2023-11-22 16:45:06 +07:00

41 lines
1 KiB
JavaScript

const { default: mongoose } = require("mongoose")
const favoriteSchema = new mongoose.Schema({
user_id: {
type: String,
required: true
},
place_name: String,
location: {
type: {
type: String,
enum: ['Point'],
required: true
},
coordinates: {
type: [Number],
required: true
}
},
wheelchair_access: String,
highway_type: String,
updated_at: { type: Date, default: Date.now }
});
module.exports = mongoose.model('favorites',favoriteSchema)
//ตัวอย่างข้อมูล
// {
// "user_id": "651310bdb59abf1a593e2368",
// "place_name": "Nonthaburi",
// "location": {
// "type": "Point",
// "coordinates": [100.5212, 13.8593] // ลำดับตำแหน่งแรกเป็นลองจิจูดและตำแหน่งที่สองเป็นละติจูด
// },
// "wheelchair_access": "accessible",
// "highway_type": "expressway"
// }