manual commit 2026-04-10T19:27:53Z
This commit is contained in:
24
models.js
24
models.js
@@ -860,9 +860,27 @@ mongoose.model('StaffSettings', new mongoose.Schema({
|
||||
}));
|
||||
|
||||
mongoose.model('StaffNotification', new mongoose.Schema({
|
||||
userId: { type: String, required: true, unique: true },
|
||||
guildId: String,
|
||||
channelId: String,
|
||||
cooldownHours: { type: Number, default: 1 },
|
||||
updatedAt: { type: Date, default: Date.now }
|
||||
}));
|
||||
|
||||
mongoose.model('StaffSignature', new mongoose.Schema({
|
||||
userId: { type: String, required: true, unique: true },
|
||||
guildId: { type: String, required: true },
|
||||
valediction: { type: String, default: '' },
|
||||
displayName: { type: String, default: '' },
|
||||
tagline: { type: String, default: '' },
|
||||
updatedAt: { type: Date, default: Date.now }
|
||||
}));
|
||||
|
||||
mongoose.model('StaffSignature', new mongoose.Schema({
|
||||
userId: { type: String, required: true, unique: true },
|
||||
guildId: String,
|
||||
channelId: String,
|
||||
cooldownHours: { type: Number, default: 1 },
|
||||
guildId: { type: String, required: true },
|
||||
valediction: { type: String, default: '' },
|
||||
displayName: { type: String, default: '' },
|
||||
tagline: { type: String, default: '' },
|
||||
updatedAt: { type: Date, default: Date.now }
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user