Parent Directory
|
Revision Log
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 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 |