blob: 56f63c90d29c270ad953d2a037b1a921ecc008ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import mongo from 'mongoose';
const fanArtSchema = new mongo.Schema({
_id: mongo.Schema.Types.ObjectId,
username: String,
userID: String,
guildname: String,
guildID: String,
channelname: String,
channelID: String,
time: String
});
export = mongo.model('FanArt', fanArtSchema)
|