Skip to content

Commit

Permalink
remove 'blacklisted' property of user
Browse files Browse the repository at this point in the history
  • Loading branch information
Tegnio committed Jun 5, 2021
1 parent cee90bb commit bee98bf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion models/User.model.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const { model, Schema } = require("mongoose");
const userSchema = new Schema({
user_id: { type: String, required: true },
guild_id: { type: String, required: true },
blacklisted: { type: Boolean, default: false, required: true },
});

module.exports = model("User", userSchema);

0 comments on commit bee98bf

Please sign in to comment.