contract-notifier/models/verifications.js
2019-11-14 16:01:31 -04:00

14 lines
312 B
JavaScript

const mongoose = require("mongoose");
const Schema = mongoose.Schema;
const VerificationSchema = new Schema({
token: String,
expirationTime: Date,
subscriber: {
type: mongoose.Schema.Types.ObjectId,
ref: "Subscribers"
}
});
module.exports = mongoose.model("Verifications", VerificationSchema);