| 1234567891011121314151617181920212223 |
- const mongoose = require("mongoose");
- const GallerySchema = new mongoose.Schema({
- owner: {
- type: mongoose.Schema.Types.ObjectId,
- ref: "Uploader",
- required: true
- },
- title: {
- type: String,
- required: true
- },
- tags: [String],
- images: [String],
- location: {
- type: {type: String},
- coordinates: [],
- required: false
- }
- });
- GallerySchema.index({location: "2dsphere"});
- module.exports = mongoose.model("Gallery", GallerySchema);
|