1
1
Fork 0
mirror of https://github.com/Akif9748/akf-forum.git synced 2025-03-14 10:27:21 +03:00
akf-forum/models/Ban.js

9 lines
256 B
JavaScript
Raw Normal View History

2022-08-29 19:31:59 +03:00
const mongoose = require("mongoose")
const schema = new mongoose.Schema({
ip: { type: String, unique: true },
reason: { type: String, default: "No reason given" },
authorID: { type: String }
2022-08-29 19:31:59 +03:00
});
module.exports = mongoose.model('ban', schema);