diff options
Diffstat (limited to 'src/lib/models/Mute.ts')
-rw-r--r-- | src/lib/models/Mute.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/lib/models/Mute.ts b/src/lib/models/Mute.ts index 273d5b1..71a32e3 100644 --- a/src/lib/models/Mute.ts +++ b/src/lib/models/Mute.ts @@ -7,7 +7,6 @@ export interface MuteModel { id: string; user: string; guild: string; - reason: string; expires: Date; modlog: string; } @@ -15,7 +14,6 @@ export interface MuteModelCreationAttributes { id?: string; user: string; guild: string; - reason?: string; expires?: Date; modlog: string; } @@ -34,10 +32,6 @@ export class Mute extends BaseModel<MuteModel, MuteModelCreationAttributes> impl */ guild: Snowflake; /** - * The reason they are muted (optional) - */ - reason: string | null; - /** * The date at which this Mute expires and should be unmuted (optional) */ expires: Date | null; @@ -71,10 +65,6 @@ export class Mute extends BaseModel<MuteModel, MuteModelCreationAttributes> impl type: DataTypes.DATE, allowNull: true }, - reason: { - type: DataTypes.STRING, - allowNull: true - }, modlog: { type: DataTypes.STRING, allowNull: false, |