1
1
Fork 0
mirror of https://github.com/Akif9748/akf-forum.git synced 2025-07-13 02:31:01 +03:00
akf-forum/models/Ban.js

7 lines
No EOL
166 B
JavaScript

const mongoose = require("mongoose")
const schema = new mongoose.Schema({
ip: { type: String, unique: true }
});
module.exports = mongoose.model('ban', schema);