mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
24 lines
468 B
JavaScript
Executable File
24 lines
468 B
JavaScript
Executable File
import { Schema } from "mongoose"
|
|
|
|
export default {
|
|
name: "ServerLimit",
|
|
collection: "serverLimits",
|
|
schema: {
|
|
key: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
value: {
|
|
type: Schema.Types.Mixed,
|
|
required: true,
|
|
},
|
|
active: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
data: {
|
|
type: Object,
|
|
required: false,
|
|
}
|
|
}
|
|
} |