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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 334 - (show annotations)
Mon Jul 29 17:29:36 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: application/typescript
File size: 516 byte(s)
refactor(models): use mongodb in Note
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 mod_tag: {
13 type: String,
14 required: true,
15 },
16 user_id: {
17 type: String,
18 required: true
19 },
20 guild_id: {
21 type: String,
22 required: true
23 },
24 createdAt: {
25 type: Date,
26 required: true
27 }
28 });
29
30 export default model("Note", schema);

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26