2021-03-17 17:54:09 -06:00
|
|
|
var mongoose = require('mongoose'),
|
|
|
|
|
Schema = mongoose.Schema;
|
2021-01-22 15:04:32 -07:00
|
|
|
|
2019-05-27 10:33:22 -07:00
|
|
|
var RichlistSchema = new Schema({
|
2021-01-22 15:04:32 -07:00
|
|
|
coin: { type: String },
|
|
|
|
|
received: { type: Array, default: [] },
|
2019-05-27 10:33:22 -07:00
|
|
|
balance: { type: Array, default: [] },
|
2021-01-22 15:04:32 -07:00
|
|
|
burned: { type: Array, default: [] }
|
2019-05-27 10:33:22 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
module.exports = mongoose.model('Richlist', RichlistSchema);
|