/[sudobot]/trunk/src/models/MuteRecord.ts
ViewVC logotype

Contents of /trunk/src/models/MuteRecord.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 335 - (show annotations)
Mon Jul 29 17:29:36 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: application/typescript
File size: 342 byte(s)
refactor(automute): use mongodb
1 import { Schema, model } from 'mongoose';
2
3 const schema = new Schema({
4 user_id: {
5 type: String,
6 required: true,
7 unique: true
8 },
9 guild_id: {
10 type: String,
11 required: true
12 },
13 createdAt: {
14 type: Date,
15 required: true
16 }
17 });
18
19 export default model("MuteRecord", schema);

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26