UNPKG
settle-discord-giveaway
Version:
latest (1.1.0)
1.1.0
A npm package that creates giveaways.
github.com/Gav-King/discord-giveaway
Gav-King/discord-giveaway
settle-discord-giveaway
/
models
/
DropModel.js
12 lines
(10 loc)
•
267 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
mongoose =
require
(
'mongoose'
);
const
DropSchema
=
new
mongoose.
Schema
({
guildId
:
String
,
channelId
:
String
,
prize
:
String
,
createdBy
:
String
,
timeCreated
:
Date
,
position
:
Number
});
module
.
exports
= mongoose.
model
(
'Drop'
,
DropSchema
);