2024-08-08 23:29:08 +00:00
|
|
|
const mongoose = require("mongoose");
|
|
|
|
const Schema = mongoose.Schema;
|
|
|
|
|
|
|
|
const MapSchema = new Schema({
|
|
|
|
data: { type: Object }, // Data del format dd2vtt
|
|
|
|
campaign: {type: mongoose.Types.ObjectId, ref: "Campaign"},
|
|
|
|
image: { type: String },
|
|
|
|
entities: { type: Object }
|
|
|
|
});
|
|
|
|
|
2024-08-09 17:06:38 +00:00
|
|
|
module.exports = mongoose.model('Map', MapSchema);
|