Files
asan-service/server/models/GPS.Notif.js
T
2024-09-28 23:00:10 +03:30

18 lines
361 B
JavaScript

const mongoose = require("mongoose");
const notificationSchema = new mongoose.Schema(
{
userID: {
type: String,
ref: 'UserGPS'
},
content: String,
read: {
type: Boolean,
default: false,
},
}
);
module.exports = mongoose.model("Notification", notificationSchema);