18 lines
361 B
JavaScript
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);
|