1 |
import { Schema, model } from 'mongoose'; |
2 |
|
3 |
export interface IPunishment { |
4 |
user_id: string |
5 |
mod_id: string |
6 |
mod_tag: string, |
7 |
guild_id: string; |
8 |
reason?: string; |
9 |
type: string |
10 |
meta?: object; |
11 |
createdAt: Date; |
12 |
} |
13 |
|
14 |
const schema = new Schema({ |
15 |
user_id: { |
16 |
type: String, |
17 |
required: true, |
18 |
}, |
19 |
mod_id: { |
20 |
type: String, |
21 |
required: true, |
22 |
}, |
23 |
mod_tag: { |
24 |
type: String, |
25 |
required: true, |
26 |
}, |
27 |
guild_id: { |
28 |
type: String, |
29 |
required: true, |
30 |
}, |
31 |
reason: { |
32 |
type: String, |
33 |
required: false |
34 |
}, |
35 |
type: { |
36 |
type: String, |
37 |
required: true |
38 |
}, |
39 |
meta: { |
40 |
type: Object, |
41 |
required: true, |
42 |
default: {} |
43 |
}, |
44 |
createdAt: { |
45 |
type: Date, |
46 |
required: true |
47 |
} |
48 |
}); |
49 |
|
50 |
// class Punishment extends Model {} |
51 |
|
52 |
// Punishment.init({ |
53 |
// id: { |
54 |
// type: DataTypes.INTEGER, |
55 |
// primaryKey: true, |
56 |
// autoIncrement: true, |
57 |
// allowNull: false, |
58 |
// }, |
59 |
// user_id: { |
60 |
// type: DataTypes.STRING, |
61 |
// allowNull: false, |
62 |
// }, |
63 |
// mod_id: { |
64 |
// type: DataTypes.STRING, |
65 |
// allowNull: false, |
66 |
// }, |
67 |
// mod_tag: { |
68 |
// type: DataTypes.STRING, |
69 |
// allowNull: false, |
70 |
// }, |
71 |
// guild_id: { |
72 |
// type: DataTypes.STRING, |
73 |
// allowNull: false, |
74 |
// }, |
75 |
// reason: { |
76 |
// type: DataTypes.TEXT, |
77 |
// allowNull: true |
78 |
// }, |
79 |
// type: { |
80 |
// type: DataTypes.STRING, |
81 |
// allowNull: false |
82 |
// }, |
83 |
// meta: { |
84 |
// type: DataTypes.JSON, |
85 |
// allowNull: false, |
86 |
// defaultValue: {} |
87 |
// }, |
88 |
// }, { |
89 |
// sequelize: DiscordClient.client.db.sequelize, |
90 |
// modelName: 'Punishment', |
91 |
// updatedAt: false, |
92 |
// tableName: 'punishments' |
93 |
// }); |
94 |
|
95 |
export default model('Punishment', schema); |