/[sudobot]/trunk/src/models/ChannelLock.ts
ViewVC logotype

Contents of /trunk/src/models/ChannelLock.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 332 - (show annotations)
Mon Jul 29 17:29:35 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: application/typescript
File size: 733 byte(s)
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