/[sudobot]/branches/2.x/src/models/SpamViolation.ts
ViewVC logotype

Contents of /branches/2.x/src/models/SpamViolation.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 694 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 import { DataTypes, Model } from 'sequelize';
2 import DiscordClient from '../client/Client';
3
4 class SpamViolation extends Model {}
5
6 SpamViolation.init({
7 id: {
8 type: DataTypes.INTEGER,
9 autoIncrement: true,
10 primaryKey: true,
11 },
12 user_id: {
13 type: DataTypes.STRING,
14 allowNull: false
15 },
16 guild_id: {
17 type: DataTypes.STRING,
18 allowNull: false
19 },
20 strike: {
21 type: DataTypes.INTEGER,
22 allowNull: false,
23 defaultValue: 1
24 }
25 }, {
26 sequelize: DiscordClient.client.db.sequelize,
27 modelName: 'SpamViolation',
28 updatedAt: false,
29 tableName: 'spam_violation'
30 });
31
32 export default SpamViolation;

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26