mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
18 lines
343 B
JavaScript
Executable File
18 lines
343 B
JavaScript
Executable File
export default {
|
|
name: "SyncEntry",
|
|
collection: "syncEntries",
|
|
schema: {
|
|
user_id: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
key: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
value: {
|
|
type: "string",
|
|
required: true,
|
|
}
|
|
}
|
|
} |