1import { Schema, model } from 'mongoose';
2
3const guildConfigSchema = new Schema({
4 guildId: { type: String, required: true, unique: true },
5 refereeRoleId: { type: String, default: null },
6});
7
8export default model('GuildConfig', guildConfigSchema);