You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
551 B

const mongoose = require('mongoose');
const Schema = mongoose.Schema;
let strike =
new Schema(
{
strikerID: {type: String, required: false, max: 100},
strokedID: {type:String, required: true,},
guildName:{type:String, required: true},
guildID:{type:String, required: true},
reason:{type:String, required:true},
date:{type:Date, required:true},
}
);
const S = module.exports = mongoose.model('strike', strike);
module.exports.get = (callback, limit)=>
{
S.find(callback).limit(limit);
}