UNPKG
discordjs-mongodb-currency
Version:
latest (1.0.1)
1.0.1
1.0.0
Easy to make currency discord bot
discordjs-mongodb-currency
/
models
/
CurrencyModel.js
12 lines
(9 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
mongoose =
require
(
'mongoose'
);
const
CurrencySchema
=
new
mongoose.
Schema
({
guildId
:
String
,
userId
:
String
,
coinsInWallet
:
Number
,
coinsInBank
:
Number
,
bankSpace
:
Number
});
module
.
exports
= mongoose.
model
(
'currency'
,
CurrencySchema
);