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

Annotation of /branches/2.x/src/models/BannedGuild.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: 573 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 BannedGuild extends Model {}
5    
6     BannedGuild.init({
7     id: {
8     type: DataTypes.INTEGER,
9     autoIncrement: true,
10     primaryKey: true,
11     },
12     reason: {
13     type: DataTypes.TEXT,
14     allowNull: true
15     },
16     guild_id: {
17     type: DataTypes.STRING,
18     unique: true
19     }
20     }, {
21     sequelize: DiscordClient.client.db.sequelize,
22     modelName: 'BannedGuild',
23     updatedAt: false,
24     tableName: 'banned_guilds'
25     });
26    
27     export default BannedGuild;

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26