1 |
import { DataTypes, Model } from 'sequelize'; |
2 |
import DiscordClient from '../client/Client'; |
3 |
import { Schema, model, Document, SchemaTypes } from 'mongoose'; |
4 |
|
5 |
// export interface IChannelLock extends Document { |
6 |
// user: string; |
7 |
// reason?: string; |
8 |
// mentions: Array<object>; |
9 |
// guild_id: string; |
10 |
// createdAt: Date; |
11 |
// } |
12 |
|
13 |
const schema = new Schema({ |
14 |
reason: { |
15 |
type: String, |
16 |
required: false |
17 |
}, |
18 |
user_id: { |
19 |
type: String, |
20 |
required: true |
21 |
}, |
22 |
guild_id: { |
23 |
type: String, |
24 |
required: true |
25 |
}, |
26 |
channel_id: { |
27 |
type: String, |
28 |
unique: true, |
29 |
required: true |
30 |
}, |
31 |
role_id: { |
32 |
type: String, |
33 |
required: true |
34 |
}, |
35 |
previous_perms: { |
36 |
allow: Array, |
37 |
deny: Array |
38 |
}, |
39 |
createdAt: { |
40 |
type: Date, |
41 |
required: true |
42 |
} |
43 |
}); |
44 |
|
45 |
// class ChannelLock extends Model {} |
46 |
|
47 |
// ChannelLock.init({ |
48 |
// id: { |
49 |
// type: DataTypes.INTEGER, |
50 |
// autoIncrement: true, |
51 |
// primaryKey: true, |
52 |
// }, |
53 |
// reason: { |
54 |
// type: DataTypes.TEXT, |
55 |
// allowNull: true |
56 |
// }, |
57 |
// user_id: { |
58 |
// type: DataTypes.STRING, |
59 |
// allowNull: false |
60 |
// }, |
61 |
// guild_id: { |
62 |
// type: DataTypes.STRING, |
63 |
// allowNull: false |
64 |
// }, |
65 |
// channel_id: { |
66 |
// type: DataTypes.STRING, |
67 |
// unique: true, |
68 |
// allowNull: false |
69 |
// }, |
70 |
// role_id: { |
71 |
// type: DataTypes.STRING, |
72 |
// allowNull: false |
73 |
// }, |
74 |
// previous_perms: { |
75 |
// type: DataTypes.JSON, |
76 |
// allowNull: false |
77 |
// } |
78 |
// }, { |
79 |
// sequelize: DiscordClient.client.db.sequelize, |
80 |
// modelName: 'ChannelLock', |
81 |
// updatedAt: false, |
82 |
// tableName: 'channel_lock' |
83 |
// }); |
84 |
|
85 |
export default model('ChannelLock', schema); |