Parent Directory
|
Revision Log
chore: eslint autofix
1 | import { Schema, model } from 'mongoose'; |
2 | |
3 | const schema = new Schema({ |
4 | content: { |
5 | type: String, |
6 | required: true |
7 | }, |
8 | author: { |
9 | type: String, |
10 | required: true |
11 | }, |
12 | msg_id: { |
13 | type: String, |
14 | required: true |
15 | }, |
16 | channel_id: { |
17 | type: String, |
18 | required: true |
19 | }, |
20 | guild_id: { |
21 | type: String, |
22 | required: true |
23 | }, |
24 | date: { |
25 | type: Date, |
26 | required: true, |
27 | } |
28 | }); |
29 | |
30 | export default model('Ballot', schema); |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |