Parent Directory
|
Revision Log
refactor(ballots): use mongodb
1 | import { Schema, model, Document } from 'mongoose'; |
2 | |
3 | export interface IBallot extends Document { |
4 | user: string; |
5 | reason?: string; |
6 | mentions: Array<object>; |
7 | guild_id: string; |
8 | createdAt: Date; |
9 | } |
10 | |
11 | const schema = new Schema({ |
12 | content: { |
13 | type: String, |
14 | required: true |
15 | }, |
16 | author: { |
17 | type: String, |
18 | required: true |
19 | }, |
20 | msg_id: { |
21 | type: String, |
22 | required: true |
23 | }, |
24 | channel_id: { |
25 | type: String, |
26 | required: true |
27 | }, |
28 | guild_id: { |
29 | type: String, |
30 | required: true |
31 | }, |
32 | date: { |
33 | type: Date, |
34 | required: true, |
35 | } |
36 | }); |
37 | |
38 | export default model('Ballot', schema); |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |