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

Annotation of /trunk/src/models/AFK.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 304 - (hide annotations)
Mon Jul 29 17:29:27 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: application/typescript
File size: 697 byte(s)
refactor: make the AFK system more detailed (#69)
1 rakin 304 import { DataTypes, Model } from 'sequelize';
2     import DiscordClient from '../client/Client';
3    
4     class AFK extends Model {}
5    
6     AFK.init({
7     id: {
8     type: DataTypes.INTEGER,
9     autoIncrement: true,
10     primaryKey: true,
11     },
12     user: {
13     type: DataTypes.STRING,
14     allowNull: false
15     },
16     reason: {
17     type: DataTypes.STRING,
18     allowNull: true
19     },
20     mentions: {
21     type: DataTypes.JSON,
22     allowNull: false,
23     defaultValue: []
24     },
25     guild_id: {
26     type: DataTypes.STRING,
27     allowNull: false
28     },
29     }, {
30     sequelize: DiscordClient.client.db.sequelize,
31     modelName: 'AFK',
32     updatedAt: false,
33     });
34    
35     export default AFK;

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26