mirror of
https://github.com/status-im/contract-notifier.git
synced 2025-02-24 17:08:25 +00:00
14 lines
312 B
JavaScript
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);
|