nyx/models/econ.js
night0721 bc346138dd Bot
2021-06-12 18:53:51 +08:00

15 lines
250 B
JavaScript

const { Schema, model } = require("mongoose");
module.exports = model(
"economy",
new Schema({
User: {
type: String,
required: true,
},
CP: {
type: Number,
required: true,
},
Inventory: Object,
})
);