mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
13 lines
348 B
JavaScript
13 lines
348 B
JavaScript
export default {
|
|
name: "OperationLog",
|
|
collection: "operation_logs",
|
|
schema: {
|
|
type: { type: String, required: true },
|
|
user_id: { type: String },
|
|
comments: { type: Array, default: [] },
|
|
|
|
date: { type: Date, required: true },
|
|
ip_address: { type: String },
|
|
client: { type: String },
|
|
}
|
|
} |