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

Annotation of /branches/2.x/src/models/Hardmute.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 612 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 import { DataTypes, Model } from 'sequelize';
2     import DiscordClient from '../client/Client';
3    
4     class Hardmute extends Model {}
5    
6     Hardmute.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     roles: {
17     type: DataTypes.JSON,
18     allowNull: false
19     },
20     guild_id: {
21     type: DataTypes.STRING,
22     allowNull: false
23     }
24     }, {
25     sequelize: DiscordClient.client.db.sequelize,
26     modelName: 'Hardmute',
27     updatedAt: false
28     });
29    
30     export default Hardmute;

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26