mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
17 lines
327 B
JavaScript
17 lines
327 B
JavaScript
export default {
|
|
name: "TosViolations",
|
|
collection: "tos_violations",
|
|
schema: {
|
|
user_id: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
reason: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
expire_at: {
|
|
type: "date",
|
|
}
|
|
}
|
|
} |