Parent Directory
|
Revision Log
refactor: make the AFK system more detailed (#69)
1 | 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 |