mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
18 lines
329 B
JavaScript
18 lines
329 B
JavaScript
|
|
const mongoose = require('mongoose');
|
||
|
|
|
||
|
|
const balanceSchema = mongoose.Schema({
|
||
|
|
user: {
|
||
|
|
type: mongoose.Schema.Types.ObjectId,
|
||
|
|
ref: 'User',
|
||
|
|
index: true,
|
||
|
|
required: true,
|
||
|
|
},
|
||
|
|
// 1000 tokenCredits = 1 mill ($0.001 USD)
|
||
|
|
tokenCredits: {
|
||
|
|
type: Number,
|
||
|
|
default: 0,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
module.exports = balanceSchema;
|