Parent Directory
|
Revision Log
refactor: remove unneeded comments
1 | import { DataTypes, Model } from 'sequelize'; |
2 | import DiscordClient from '../client/Client'; |
3 | import { Schema, model, Document, SchemaTypes } from 'mongoose'; |
4 | |
5 | const schema = new Schema({ |
6 | reason: { |
7 | type: String, |
8 | required: false |
9 | }, |
10 | user_id: { |
11 | type: String, |
12 | required: true |
13 | }, |
14 | guild_id: { |
15 | type: String, |
16 | required: true |
17 | }, |
18 | channel_id: { |
19 | type: String, |
20 | unique: true, |
21 | required: true |
22 | }, |
23 | role_id: { |
24 | type: String, |
25 | required: true |
26 | }, |
27 | previous_perms: { |
28 | allow: Array, |
29 | deny: Array |
30 | }, |
31 | createdAt: { |
32 | type: Date, |
33 | required: true |
34 | } |
35 | }); |
36 | |
37 | export default model('ChannelLock', schema); |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |