13 lines
291 B
JavaScript
13 lines
291 B
JavaScript
const mongoose = require("mongoose");
|
|
|
|
const photoSchema = new mongoose.Schema(
|
|
{
|
|
url: { type: String, required: true },
|
|
caption: { type: String },
|
|
active: { type: Boolean, default: true },
|
|
},
|
|
{ timestamps: true }
|
|
);
|
|
|
|
module.exports = mongoose.model("Photo", photoSchema);
|