mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-23 04:10:40 +03:00
8 lines
157 B
JavaScript
8 lines
157 B
JavaScript
|
const { Schema, model } = require("mongoose")
|
||
|
|
||
|
|
||
|
module.exports = model('timeout', new Schema({
|
||
|
id: { type: Number, unique: true },
|
||
|
until: Number
|
||
|
|
||
|
}))
|