Parent Directory
|
Revision Log
refactor(hardmuting): use mongodb
1 | import { DataTypes, Model } from 'sequelize'; |
2 | import DiscordClient from '../client/Client'; |
3 | import { Schema, model } from 'mongoose'; |
4 | |
5 | const schema = new Schema({ |
6 | user_id: { |
7 | type: String, |
8 | required: true |
9 | }, |
10 | roles: { |
11 | type: Array, |
12 | required: true |
13 | }, |
14 | guild_id: { |
15 | type: String, |
16 | required: true |
17 | }, |
18 | createdAt: { |
19 | type: Date, |
20 | required: true |
21 | } |
22 | }); |
23 | |
24 | export default model('Hardmute', schema); |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |