1
1
Fork 0
mirror of https://github.com/Akif9748/akf-forum.git synced 2025-07-14 19:11:01 +03:00
akf-forum/models/Timeout.js

8 lines
No EOL
157 B
JavaScript

const { Schema, model } = require("mongoose")
module.exports = model('timeout', new Schema({
id: { type: Number, unique: true },
until: Number
}))